Skip to content

Commit

Permalink
BUMP 3.12.3 (#810)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneHarvey committed Dec 7, 2021
1 parent 55091f1 commit 0fe4ba7
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
@@ -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
-------------------------

Expand Down
2 changes: 1 addition & 1 deletion pymongo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
Deprecated
"""

version_tuple = (3, 12, 3, '.dev0')
version_tuple = (3, 12, 3)

def get_version_string():
if isinstance(version_tuple[-1], str):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
except ImportError:
_HAVE_SPHINX = False

version = "3.12.3.dev0"
version = "3.12.3"

f = open("README.rst")
try:
Expand Down

0 comments on commit 0fe4ba7

Please sign in to comment.