PYTHON-4219 Prep for 4.6.2 Release (#1530)
This commit is contained in:
parent
d29b2b7cf4
commit
cf1c6a11f7
@ -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
|
||||
------------------------
|
||||
|
||||
|
||||
@ -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:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user