Skip to content

Commit 63574b9

Browse files
committed
BUMP 3.11.0rc0
1 parent b6bf4f0 commit 63574b9

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

doc/changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Changelog
22
=========
33

4-
Changes in Version 3.11.0b2.dev0
5-
--------------------------------
4+
Changes in Version 3.11.0rc0
5+
----------------------------
66

77
Version 3.11 adds support for MongoDB 4.4 and includes a number of bug fixes.
88
Highlights include:

doc/installation.rst

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,4 @@ but can be found on the
275275
`GitHub tags page <https://github.com/mongodb/mongo-python-driver/tags>`_.
276276
They can be installed by passing the full URL for the tag to pip::
277277

278-
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.11.0b1.tar.gz
279-
280-
or easy_install::
281-
282-
$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.11.0b1.tar.gz
278+
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.11.0rc0.tar.gz

pymongo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
ALL = 2
7575
"""Profile all operations."""
7676

77-
version_tuple = (3, 11, 0, 'b2.dev0')
77+
version_tuple = (3, 11, 0, 'rc0')
7878

7979
def get_version_string():
8080
if isinstance(version_tuple[-1], str):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
except ImportError:
4040
_HAVE_SPHINX = False
4141

42-
version = "3.11.0b2.dev0"
42+
version = "3.11.0rc0"
4343

4444
f = open("README.rst")
4545
try:

0 commit comments

Comments
 (0)