Skip to content

Commit 0fe4ba7

Browse files
authored
BUMP 3.12.3 (#810)
1 parent 55091f1 commit 0fe4ba7

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

Diff for: doc/changelog.rst

+15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
Changelog
22
=========
33

4+
Changes in Version 3.12.3
5+
-------------------------
6+
7+
Issues Resolved
8+
...............
9+
10+
Version 3.12.3 fixes a bug that prevented :meth:`bson.json_util.loads` from
11+
decoding a document with a non-string "$regex" field (`PYTHON-3028`_).
12+
13+
See the `PyMongo 3.12.3 release notes in JIRA`_ for the list of resolved issues
14+
in this release.
15+
16+
.. _PYTHON-3028: https://jira.mongodb.org/browse/PYTHON-3028
17+
.. _PyMongo 3.12.3 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=32505
18+
419
Changes in Version 3.12.2
520
-------------------------
621

Diff for: pymongo/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
Deprecated
100100
"""
101101

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

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

Diff for: setup.py

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

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

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

0 commit comments

Comments
 (0)