From af1998a6401c0b7dfac6436f8da108dbb0734e11 Mon Sep 17 00:00:00 2001 From: Shane Harvey Date: Mon, 10 Jul 2023 12:38:50 -0400 Subject: [PATCH 1/2] BUMP 4.4.1 --- doc/changelog.rst | 21 +++++++++++++++++++++ pymongo/_version.py | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index eae105b617..63b6670987 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,27 @@ Changelog ========= +Changes in Version 4.4.1 +------------------------ + +Version 4.4.1 fixes the following bugs: + +- Fixed a bug where pymongo would raise a ConfigurationError when connecting + to a "mongodb+srv://" URI that included capital letters in the SRV hosts + returned from DNS. (`PYTHON-3800`_). +- Fixed a minor reference counting bug in the C extension (`PYTHON-3798`_). + +Issues Resolved +............... + +See the `PyMongo 4.4.1 release notes in JIRA`_ for the list of resolved issues +in this release. + +.. _PYTHON-3798: https://jira.mongodb.org/browse/PYTHON-3798 +.. _PYTHON-3800: https://jira.mongodb.org/browse/PYTHON-3800 +.. _PyMongo 4.4.1 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=36329 + + Changes in Version 4.4 ----------------------- diff --git a/pymongo/_version.py b/pymongo/_version.py index d82351b10d..dc5906d89d 100644 --- a/pymongo/_version.py +++ b/pymongo/_version.py @@ -15,7 +15,7 @@ """Current version of PyMongo.""" from typing import Tuple, Union -version_tuple: Tuple[Union[int, str], ...] = (4, 4, 1, ".dev0") +version_tuple: Tuple[Union[int, str], ...] = (4, 4, 1) def get_version_string() -> str: From d41bb644f73e274a86e75e7ea0f812dce5195fa9 Mon Sep 17 00:00:00 2001 From: Shane Harvey Date: Mon, 10 Jul 2023 12:42:23 -0400 Subject: [PATCH 2/2] Better changelog --- doc/changelog.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index 63b6670987..9595b26725 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -6,9 +6,9 @@ Changes in Version 4.4.1 Version 4.4.1 fixes the following bugs: -- Fixed a bug where pymongo would raise a ConfigurationError when connecting - to a "mongodb+srv://" URI that included capital letters in the SRV hosts - returned from DNS. (`PYTHON-3800`_). +- Fixed a bug where pymongo would raise a ``ConfigurationError: Invalid SRV host`` + error when connecting to a "mongodb+srv://" URI that included capital letters + in the SRV hosts returned from DNS. (`PYTHON-3800`_). - Fixed a minor reference counting bug in the C extension (`PYTHON-3798`_). Issues Resolved