Skip to content

Commit 29f4d5c

Browse files
authored
PYTHON-4429 Prep for 4.7.2 Release (#1633)
1 parent 3ff1e84 commit 29f4d5c

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

Diff for: doc/changelog.rst

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

4+
Changes in Version 4.7.2
5+
-------------------------
6+
7+
Version 4.7.2 fixes a bug introduced in 4.7.0:
8+
9+
- Fixed a bug where PyMongo could not be used with the Nuitka compiler.
10+
11+
Issues Resolved
12+
...............
13+
14+
See the `PyMongo 4.7.2 release notes in JIRA`_ for the list of resolved issues
15+
in this release.
16+
17+
.. _PyMongo 4.7.2 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=39710
18+
19+
420
Changes in Version 4.7.1
521
-------------------------
622

Diff for: 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, 8, 0, ".dev0")
20+
version_tuple: Tuple[Union[int, str], ...] = (4, 7, 2)
2121

2222

2323
def get_version_string() -> str:

0 commit comments

Comments
 (0)