File tree Expand file tree Collapse file tree 4 files changed +13
-7
lines changed Expand file tree Collapse file tree 4 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -239,8 +239,8 @@ Run a single test example for debugging with verbose and immediate stdout output
239
239
Changelog
240
240
---------
241
241
242
- Changes in Version 0.8.0 (TBD )
243
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
242
+ Changes in Version 0.8.0 (2023-05-16 )
243
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
244
244
245
245
- Add ``mongo-launch `` CLI tool.
246
246
- Upgrade to PyMongo 4.x and set up GitHub Actions testing.
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/python
2
2
# coding=utf-8
3
- # Copyright 2012-2014 MongoDB, Inc.
3
+ # Copyright 2012-2023 MongoDB, Inc.
4
4
#
5
5
# Licensed under the Apache License, Version 2.0 (the "License");
6
6
# you may not use this file except in compliance with the License.
16
16
17
17
import sys
18
18
19
+ from mongo_orchestration ._version import __version__
19
20
from mongo_orchestration .servers import Servers
20
21
from mongo_orchestration .replica_sets import ReplicaSets
21
22
from mongo_orchestration .sharded_clusters import ShardedClusters
22
23
23
- __version__ = '0.7.1.dev0'
24
-
25
24
26
25
def set_releases (releases = None , default_release = None ):
27
26
Servers ().set_settings (releases , default_release )
Original file line number Diff line number Diff line change
1
+ __version__ = "0.8.0"
Original file line number Diff line number Diff line change 16
16
long_description = ''
17
17
18
18
19
+ version_ns = {}
20
+ with open ("mongo_orchestration/_version.py" ) as fp :
21
+ exec (fp .read (), version_ns )
22
+ version = version_ns ["__version__" ]
23
+
19
24
setup (
20
25
name = 'mongo-orchestration' ,
21
- version = '0.8.0.dev0' ,
26
+ version = version ,
22
27
author = 'MongoDB, Inc.' ,
23
28
24
29
description = 'Restful service for managing MongoDB servers' ,
50
55
"Operating System :: Microsoft :: Windows" ,
51
56
"Operating System :: POSIX" ,
52
57
"Programming Language :: Python :: 3" ,
53
- "Programming Language :: Python :: 3.6" ,
54
58
"Programming Language :: Python :: 3.7" ,
55
59
"Programming Language :: Python :: 3.8" ,
56
60
"Programming Language :: Python :: 3.9" ,
61
+ "Programming Language :: Python :: 3.10" ,
62
+ "Programming Language :: Python :: 3.11" ,
57
63
"Programming Language :: Python :: Implementation :: CPython"
58
64
],
59
65
entry_points = {
You can’t perform that action at this time.
0 commit comments