PYTHON-4219 Prep for 4.6.2 Release (#1530)

This commit is contained in:
Steven Silvester 2024-02-20 14:30:46 -06:00 committed by GitHub
parent d29b2b7cf4
commit cf1c6a11f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View File

@ -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
------------------------

View File

@ -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: