diff --git a/doc/changelog.rst b/doc/changelog.rst index 20c30fd6f..869868847 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -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: diff --git a/doc/installation.rst b/doc/installation.rst index f34991740..f9f01a671 100644 --- a/doc/installation.rst +++ b/doc/installation.rst @@ -275,8 +275,4 @@ but can be found on the `GitHub tags page `_. 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 diff --git a/pymongo/__init__.py b/pymongo/__init__.py index b87668cd6..c771a09c8 100644 --- a/pymongo/__init__.py +++ b/pymongo/__init__.py @@ -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): diff --git a/setup.py b/setup.py index 7379b260e..53c8e4348 100755 --- a/setup.py +++ b/setup.py @@ -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: