BUMP 3.12.3 (#810)

This commit is contained in:
Shane Harvey 2021-12-07 11:42:48 -08:00 committed by GitHub
parent 55091f1b79
commit 0fe4ba7f0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 17 additions and 2 deletions

View File

@ -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
-------------------------

View File

@ -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):

View File

@ -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: