diff --git a/doc/changelog.rst b/doc/changelog.rst index eee3e4a81..0fe230012 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -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. diff --git a/pymongo/__init__.py b/pymongo/__init__.py index a47fd0a7b..8a4288a99 100644 --- a/pymongo/__init__.py +++ b/pymongo/__init__.py @@ -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: diff --git a/setup.py b/setup.py index dff4678d4..9d804a06c 100755 --- a/setup.py +++ b/setup.py @@ -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: