Skip to content

Commit cf1c6a1

Browse files
authored
PYTHON-4219 Prep for 4.6.2 Release (#1530)
1 parent d29b2b7 commit cf1c6a1

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

doc/changelog.rst

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

4+
Changes in Version 4.6.2
5+
------------------------
6+
7+
PyMongo 4.6.2 fixes the following bug:
8+
9+
- Fixed a bug appearing in Python 3.12 where "RuntimeError: can't create new thread at interpreter shutdown"
10+
could be written to stderr when a MongoClient's thread starts as the python interpreter is shutting down.
11+
412
Changes in Version 4.6.1
513
------------------------
614

pymongo/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
from typing import Tuple, Union
1919

20-
version_tuple: Tuple[Union[int, str], ...] = (4, 6, 2, ".dev0")
20+
version_tuple: Tuple[Union[int, str], ...] = (4, 6, 2)
2121

2222

2323
def get_version_string() -> str:

0 commit comments

Comments
 (0)