BUMP 4.1.1

This commit is contained in:
Shane Harvey 2022-04-13 13:27:30 -07:00
parent 868b3f77f3
commit 8b3eaafb40
3 changed files with 5 additions and 5 deletions

View File

@ -4,9 +4,6 @@ Changelog
Changes in Version 4.1.1
-------------------------
Issues Resolved
...............
Version 4.1.1 fixes a number of bugs:
- Fixed a memory leak bug when calling :func:`~bson.decode_all` without a
@ -19,6 +16,9 @@ Version 4.1.1 fixes a number of bugs:
exception when attempting to parse a "mongodb+srv://" URI when the dnspython
dependency was not installed (`PYTHON-3198`_).
Issues Resolved
...............
See the `PyMongo 4.1.1 release notes in JIRA`_ for the list of resolved issues
in this release.

View File

@ -55,7 +55,7 @@ TEXT = "text"
.. _text index: http://mongodb.com/docs/manual/core/index-text/
"""
version_tuple: Tuple[Union[int, str], ...] = (4, 2, 0, ".dev0")
version_tuple: Tuple[Union[int, str], ...] = (4, 1, 1)
def get_version_string() -> str:

View File

@ -34,7 +34,7 @@ except ImportError:
except ImportError:
_HAVE_SPHINX = False
version = "4.2.0.dev0"
version = "4.1.1"
f = open("README.rst")
try: