Skip to content

Commit febcc51

Browse files
committed
BUMP 3.11.4.dev0
1 parent b47a1aa commit febcc51

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

doc/changelog.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
Changelog
22
=========
33

4+
Changes in Version 3.11.4
5+
-------------------------
6+
7+
Issues Resolved
8+
...............
9+
10+
Version 3.11.4 fixes a bug where a MongoClient would mistakenly attempt to
11+
create minPoolSize connections to arbiter nodes (`PYTHON-2634`_).
12+
13+
See the `PyMongo 3.11.4 release notes in JIRA`_ for the list of resolved issues
14+
in this release.
15+
16+
.. _PYTHON-2634: https://jira.mongodb.org/browse/PYTHON-2452
17+
.. _PyMongo 3.11.4 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=30902
18+
419
Changes in Version 3.11.3
520
-------------------------
621

pymongo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
ALL = 2
7575
"""Profile all operations."""
7676

77-
version_tuple = (3, 11, 3)
77+
version_tuple = (3, 11, 4, '.dev0')
7878

7979
def get_version_string():
8080
if isinstance(version_tuple[-1], str):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
except ImportError:
4040
_HAVE_SPHINX = False
4141

42-
version = "3.11.3"
42+
version = "3.11.4.dev0"
4343

4444
f = open("README.rst")
4545
try:

0 commit comments

Comments
 (0)