diff --git a/doc/changelog.rst b/doc/changelog.rst index 3d11b744f..f37dca3a5 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,21 @@ Changelog ========= +Changes in Version 3.11.4 +------------------------- + +Issues Resolved +............... + +Version 3.11.4 fixes a bug where a MongoClient would mistakenly attempt to +create minPoolSize connections to arbiter nodes (`PYTHON-2634`_). + +See the `PyMongo 3.11.4 release notes in JIRA`_ for the list of resolved issues +in this release. + +.. _PYTHON-2634: https://jira.mongodb.org/browse/PYTHON-2452 +.. _PyMongo 3.11.4 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=30902 + Changes in Version 3.11.3 ------------------------- diff --git a/pymongo/__init__.py b/pymongo/__init__.py index 254891eb1..a0c7ff592 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, 3) +version_tuple = (3, 11, 4, '.dev0') def get_version_string(): if isinstance(version_tuple[-1], str): diff --git a/setup.py b/setup.py index 4a6c3a94b..2e4c2c96a 100755 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ except ImportError: except ImportError: _HAVE_SPHINX = False -version = "3.11.3" +version = "3.11.4.dev0" f = open("README.rst") try: