BUMP 3.11.0rc0

This commit is contained in:
Prashant Mital 2020-07-15 11:03:59 -07:00
parent b6bf4f0157
commit 63574b9360
No known key found for this signature in database
GPG Key ID: D5A4E9E5CFB4CBD7
4 changed files with 5 additions and 9 deletions

View File

@ -1,8 +1,8 @@
Changelog
=========
Changes in Version 3.11.0b2.dev0
--------------------------------
Changes in Version 3.11.0rc0
----------------------------
Version 3.11 adds support for MongoDB 4.4 and includes a number of bug fixes.
Highlights include:

View File

@ -275,8 +275,4 @@ but can be found on the
`GitHub tags page <https://github.com/mongodb/mongo-python-driver/tags>`_.
They can be installed by passing the full URL for the tag to pip::
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.11.0b1.tar.gz
or easy_install::
$ python -m easy_install https://github.com/mongodb/mongo-python-driver/archive/3.11.0b1.tar.gz
$ python -m pip install https://github.com/mongodb/mongo-python-driver/archive/3.11.0rc0.tar.gz

View File

@ -74,7 +74,7 @@ SLOW_ONLY = 1
ALL = 2
"""Profile all operations."""
version_tuple = (3, 11, 0, 'b2.dev0')
version_tuple = (3, 11, 0, 'rc0')
def get_version_string():
if isinstance(version_tuple[-1], str):

View File

@ -39,7 +39,7 @@ except ImportError:
except ImportError:
_HAVE_SPHINX = False
version = "3.11.0b2.dev0"
version = "3.11.0rc0"
f = open("README.rst")
try: