Skip to content

Commit b420ae6

Browse files
committed
BUMP 3.12.2
1 parent 5c0705a commit b420ae6

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

doc/changelog.rst

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,19 @@ Changes in Version 3.12.2
77
Issues Resolved
88
...............
99

10-
Version 3.12.2 fixes a bug that prevented PyMongo from retrying bulk writes
11-
after a ``writeConcernError`` on MongoDB 4.4+ (`PYTHON-2984`_).
10+
Version 3.12.2 fixes a number of bugs:
11+
12+
- Fixed a bug that prevented PyMongo from retrying bulk writes
13+
after a ``writeConcernError`` on MongoDB 4.4+ (`PYTHON-2984`_).
14+
- Fixed a bug that could cause the driver to hang during automatic
15+
client side field level encryption (`PYTHON-3017`_).
1216

1317
See the `PyMongo 3.12.2 release notes in JIRA`_ for the list of resolved issues
1418
in this release.
1519

1620
.. _PYTHON-2984: https://jira.mongodb.org/browse/PYTHON-2984
17-
.. _PyMongo 3.12.2 release notes in JIRA:https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=32310
21+
.. _PYTHON-3017: https://jira.mongodb.org/browse/PYTHON-3017
22+
.. _PyMongo 3.12.2 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=32310
1823

1924
Changes in Version 3.12.1
2025
-------------------------

pymongo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
Deprecated
100100
"""
101101

102-
version_tuple = (3, 12, 2, '.dev0')
102+
version_tuple = (3, 12, 2)
103103

104104
def get_version_string():
105105
if isinstance(version_tuple[-1], str):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
except ImportError:
4444
_HAVE_SPHINX = False
4545

46-
version = "3.12.2.dev0"
46+
version = "3.12.2"
4747

4848
f = open("README.rst")
4949
try:

0 commit comments

Comments
 (0)