Skip to content

Commit 8b3eaaf

Browse files
committed
BUMP 4.1.1
1 parent 868b3f7 commit 8b3eaaf

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doc/changelog.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ Changelog
44
Changes in Version 4.1.1
55
-------------------------
66

7-
Issues Resolved
8-
...............
9-
107
Version 4.1.1 fixes a number of bugs:
118

129
- 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:
1916
exception when attempting to parse a "mongodb+srv://" URI when the dnspython
2017
dependency was not installed (`PYTHON-3198`_).
2118

19+
Issues Resolved
20+
...............
21+
2222
See the `PyMongo 4.1.1 release notes in JIRA`_ for the list of resolved issues
2323
in this release.
2424

pymongo/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
.. _text index: http://mongodb.com/docs/manual/core/index-text/
5656
"""
5757

58-
version_tuple: Tuple[Union[int, str], ...] = (4, 2, 0, ".dev0")
58+
version_tuple: Tuple[Union[int, str], ...] = (4, 1, 1)
5959

6060

6161
def get_version_string() -> str:

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
except ImportError:
3535
_HAVE_SPHINX = False
3636

37-
version = "4.2.0.dev0"
37+
version = "4.1.1"
3838

3939
f = open("README.rst")
4040
try:

0 commit comments

Comments
 (0)