From cf1c6a11f76861fd6150b0df79a7ed70f2b2fea5 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Tue, 20 Feb 2024 14:30:46 -0600 Subject: [PATCH] PYTHON-4219 Prep for 4.6.2 Release (#1530) --- doc/changelog.rst | 8 ++++++++ pymongo/_version.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index 4a2a634f4..d823828ef 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,14 @@ Changelog ========= +Changes in Version 4.6.2 +------------------------ + +PyMongo 4.6.2 fixes the following bug: + +- Fixed a bug appearing in Python 3.12 where "RuntimeError: can't create new thread at interpreter shutdown" + could be written to stderr when a MongoClient's thread starts as the python interpreter is shutting down. + Changes in Version 4.6.1 ------------------------ diff --git a/pymongo/_version.py b/pymongo/_version.py index bb198adf7..63e3b1d6f 100644 --- a/pymongo/_version.py +++ b/pymongo/_version.py @@ -17,7 +17,7 @@ from __future__ import annotations from typing import Tuple, Union -version_tuple: Tuple[Union[int, str], ...] = (4, 6, 2, ".dev0") +version_tuple: Tuple[Union[int, str], ...] = (4, 6, 2) def get_version_string() -> str: