File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -7,14 +7,19 @@ Changes in Version 3.12.2
77Issues 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
1317See the `PyMongo 3.12.2 release notes in JIRA `_ for the list of resolved issues
1418in 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
1924Changes in Version 3.12.1
2025-------------------------
Original file line number Diff line number Diff line change 9999 Deprecated
100100"""
101101
102- version_tuple = (3 , 12 , 2 , '.dev0' )
102+ version_tuple = (3 , 12 , 2 )
103103
104104def get_version_string ():
105105 if isinstance (version_tuple [- 1 ], str ):
Original file line number Diff line number Diff line change 4343 except ImportError :
4444 _HAVE_SPHINX = False
4545
46- version = "3.12.2.dev0 "
46+ version = "3.12.2"
4747
4848f = open ("README.rst" )
4949try :
You can’t perform that action at this time.
0 commit comments