Skip to content

Commit b47a1aa

Browse files
BUMP 3.11.3 (#563)
1 parent bb11d73 commit b47a1aa

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

doc/changelog.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,13 @@ Changes in Version 3.11.3
77
Issues Resolved
88
...............
99

10+
Version 3.11.3 fixes a bug that prevented PyMongo from retrying writes after
11+
a ``writeConcernError`` on MongoDB 4.4+ (`PYTHON-2452`_)
12+
1013
See the `PyMongo 3.11.3 release notes in JIRA`_ for the list of resolved issues
1114
in this release.
1215

16+
.. _PYTHON-2452: https://jira.mongodb.org/browse/PYTHON-2452
1317
.. _PyMongo 3.11.3 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=30355
1418

1519
Changes in Version 3.11.2

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, 'dev0')
77+
version_tuple = (3, 11, 3)
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.dev0"
42+
version = "3.11.3"
4343

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

0 commit comments

Comments
 (0)