diff --git a/doc/changelog.rst b/doc/changelog.rst index 869868847..c78cefb7f 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,8 +1,8 @@ Changelog ========= -Changes in Version 3.11.0rc0 ----------------------------- +Changes in Version 3.11.0rc1.dev0 +--------------------------------- Version 3.11 adds support for MongoDB 4.4 and includes a number of bug fixes. Highlights include: diff --git a/pymongo/__init__.py b/pymongo/__init__.py index c771a09c8..066eaea09 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, 'rc0') +version_tuple = (3, 11, 0, 'rc1.dev0') def get_version_string(): if isinstance(version_tuple[-1], str): diff --git a/setup.py b/setup.py index 53c8e4348..528f8183c 100755 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ except ImportError: except ImportError: _HAVE_SPHINX = False -version = "3.11.0rc0" +version = "3.11.0rc1.dev0" f = open("README.rst") try: