Skip to content

Commit

Permalink
BUMP 4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaneHarvey committed Apr 13, 2022
1 parent 868b3f7 commit 8b3eaaf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion pymongo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
.. _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:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
except ImportError:
_HAVE_SPHINX = False

version = "4.2.0.dev0"
version = "4.1.1"

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

0 comments on commit 8b3eaaf

Please sign in to comment.