BUMP 3.11.4.dev0

This commit is contained in:
Shane Harvey 2021-04-19 15:22:44 -07:00
parent b47a1aa791
commit febcc51dfd
3 changed files with 17 additions and 2 deletions

View File

@ -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
-------------------------

View File

@ -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):

View File

@ -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: