From 0fe4ba7f0ba6389d9083b56bc43d57d4ee095f32 Mon Sep 17 00:00:00 2001 From: Shane Harvey Date: Tue, 7 Dec 2021 11:42:48 -0800 Subject: [PATCH] BUMP 3.12.3 (#810) --- doc/changelog.rst | 15 +++++++++++++++ pymongo/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index 5b89aafb9..92c54ae1f 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,21 @@ Changelog ========= +Changes in Version 3.12.3 +------------------------- + +Issues Resolved +............... + +Version 3.12.3 fixes a bug that prevented :meth:`bson.json_util.loads` from +decoding a document with a non-string "$regex" field (`PYTHON-3028`_). + +See the `PyMongo 3.12.3 release notes in JIRA`_ for the list of resolved issues +in this release. + +.. _PYTHON-3028: https://jira.mongodb.org/browse/PYTHON-3028 +.. _PyMongo 3.12.3 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=32505 + Changes in Version 3.12.2 ------------------------- diff --git a/pymongo/__init__.py b/pymongo/__init__.py index a5aef43fd..406984e82 100644 --- a/pymongo/__init__.py +++ b/pymongo/__init__.py @@ -99,7 +99,7 @@ See https://docs.mongodb.com/manual/tutorial/manage-the-database-profiler Deprecated """ -version_tuple = (3, 12, 3, '.dev0') +version_tuple = (3, 12, 3) def get_version_string(): if isinstance(version_tuple[-1], str): diff --git a/setup.py b/setup.py index 539e63af8..b1715f31e 100755 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ except ImportError: except ImportError: _HAVE_SPHINX = False -version = "3.12.3.dev0" +version = "3.12.3" f = open("README.rst") try: