Skip to content

Commit f5c594c

Browse files
authored
DRIVERS-2628 Release Mongo Orchestration 0.8 (#307)
1 parent 84d6ebb commit f5c594c

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,8 +239,8 @@ Run a single test example for debugging with verbose and immediate stdout output
239239
Changelog
240240
---------
241241

242-
Changes in Version 0.8.0 (TBD)
243-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
242+
Changes in Version 0.8.0 (2023-05-16)
243+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
244244

245245
- Add ``mongo-launch`` CLI tool.
246246
- Upgrade to PyMongo 4.x and set up GitHub Actions testing.

mongo_orchestration/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/python
22
# coding=utf-8
3-
# Copyright 2012-2014 MongoDB, Inc.
3+
# Copyright 2012-2023 MongoDB, Inc.
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.
@@ -16,12 +16,11 @@
1616

1717
import sys
1818

19+
from mongo_orchestration._version import __version__
1920
from mongo_orchestration.servers import Servers
2021
from mongo_orchestration.replica_sets import ReplicaSets
2122
from mongo_orchestration.sharded_clusters import ShardedClusters
2223

23-
__version__ = '0.7.1.dev0'
24-
2524

2625
def set_releases(releases=None, default_release=None):
2726
Servers().set_settings(releases, default_release)

mongo_orchestration/_version.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__version__ = "0.8.0"

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,14 @@
1616
long_description = ''
1717

1818

19+
version_ns = {}
20+
with open("mongo_orchestration/_version.py") as fp:
21+
exec(fp.read(), version_ns)
22+
version = version_ns["__version__"]
23+
1924
setup(
2025
name='mongo-orchestration',
21-
version='0.8.0.dev0',
26+
version=version,
2227
author='MongoDB, Inc.',
2328
author_email='[email protected]',
2429
description='Restful service for managing MongoDB servers',
@@ -50,10 +55,11 @@
5055
"Operating System :: Microsoft :: Windows",
5156
"Operating System :: POSIX",
5257
"Programming Language :: Python :: 3",
53-
"Programming Language :: Python :: 3.6",
5458
"Programming Language :: Python :: 3.7",
5559
"Programming Language :: Python :: 3.8",
5660
"Programming Language :: Python :: 3.9",
61+
"Programming Language :: Python :: 3.10",
62+
"Programming Language :: Python :: 3.11",
5763
"Programming Language :: Python :: Implementation :: CPython"
5864
],
5965
entry_points={

0 commit comments

Comments
 (0)