Skip to content

Commit 14dadbb

Browse files
BUMP 3.11.2 (#528)
1 parent 65fec19 commit 14dadbb

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

doc/changelog.rst

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

10+
Version 3.11.2 includes a number of bugfixes. Highlights include:
11+
12+
- Fixed a memory leak caused by failing SDAM monitor checks on Python 3 (`PYTHON-2433`_).
13+
- Fixed a regression that changed the string representation of
14+
:exc:`~pymongo.errors.BulkWriteError` (`PYTHON-2438`_).
15+
- Fixed a bug that made it impossible to use
16+
:meth:`bson.codec_options.CodecOptions.with_options` and
17+
:meth:`~bson.json_util.JSONOptions.with_options` on some early versions of
18+
Python 3.4 and Python 3.5 due to a bug in the standard library implementation
19+
of :meth:`collections.namedtuple._asdict` (`PYTHON-2440`_).
20+
- Fixed a bug that resulted in a :exc:`TypeError` exception when a PyOpenSSL
21+
socket was configured with a timeout of ``None`` (`PYTHON-2443`_).
22+
1023
See the `PyMongo 3.11.2 release notes in JIRA`_ for the list of resolved issues
1124
in this release.
1225

26+
.. _PYTHON-2433: https://jira.mongodb.org/browse/PYTHON-2433
27+
.. _PYTHON-2438: https://jira.mongodb.org/browse/PYTHON-2438
28+
.. _PYTHON-2440: https://jira.mongodb.org/browse/PYTHON-2440
29+
.. _PYTHON-2443: https://jira.mongodb.org/browse/PYTHON-2443
1330
.. _PyMongo 3.11.2 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=30315
1431

1532
Changes in Version 3.11.1

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

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

0 commit comments

Comments
 (0)