Skip to content

Commit aab9bcb

Browse files
authored
BUMP 4.4.1 (#1299)
1 parent 724dee8 commit aab9bcb

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

doc/changelog.rst

+21
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
Changelog
22
=========
33

4+
Changes in Version 4.4.1
5+
------------------------
6+
7+
Version 4.4.1 fixes the following bugs:
8+
9+
- Fixed a bug where pymongo would raise a ``ConfigurationError: Invalid SRV host``
10+
error when connecting to a "mongodb+srv://" URI that included capital letters
11+
in the SRV hosts returned from DNS. (`PYTHON-3800`_).
12+
- Fixed a minor reference counting bug in the C extension (`PYTHON-3798`_).
13+
14+
Issues Resolved
15+
...............
16+
17+
See the `PyMongo 4.4.1 release notes in JIRA`_ for the list of resolved issues
18+
in this release.
19+
20+
.. _PYTHON-3798: https://jira.mongodb.org/browse/PYTHON-3798
21+
.. _PYTHON-3800: https://jira.mongodb.org/browse/PYTHON-3800
22+
.. _PyMongo 4.4.1 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=36329
23+
24+
425
Changes in Version 4.4
526
-----------------------
627

pymongo/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"""Current version of PyMongo."""
1616
from typing import Tuple, Union
1717

18-
version_tuple: Tuple[Union[int, str], ...] = (4, 4, 1, ".dev0")
18+
version_tuple: Tuple[Union[int, str], ...] = (4, 4, 1)
1919

2020

2121
def get_version_string() -> str:

0 commit comments

Comments
 (0)