Skip to content

Commit 6715cd3

Browse files
authored
BUMP 4.9.0.dev0 (mongodb#1672)
1 parent 5dd6ffb commit 6715cd3

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

doc/changelog.rst

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
Changelog
22
=========
33

4+
Changes in Version 4.9.0
5+
-------------------------
6+
7+
PyMongo 4.9 brings a number of improvements including:
8+
9+
- A new asynchronous API with full asyncio support.
10+
11+
Issues Resolved
12+
...............
13+
14+
See the `PyMongo 4.9 release notes in JIRA`_ for the list of resolved issues
15+
in this release.
16+
17+
.. _PyMongo 4.9 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=39940
18+
19+
420
Changes in Version 4.8.0
521
-------------------------
622

@@ -10,14 +26,21 @@ PyMongo 4.8 brings a number of improvements including:
1026

1127
- The handshake metadata for "os.name" on Windows has been simplified to "Windows" to improve import time.
1228
- The repr of ``bson.binary.Binary`` is now redacted when the subtype is SENSITIVE_SUBTYPE(8).
13-
- A new asynchronous API with full asyncio support.
1429

1530
Unavoidable breaking changes
1631
............................
1732

1833
- Since we are now using ``hatch`` as our build backend, we no longer have a ``setup.py`` file
1934
and require installation using ``pip``.
2035

36+
Issues Resolved
37+
...............
38+
39+
See the `PyMongo 4.8 release notes in JIRA`_ for the list of resolved issues
40+
in this release.
41+
42+
.. _PyMongo 4.8 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=37057
43+
2144
Changes in Version 4.7.3
2245
-------------------------
2346

pymongo/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import re
1919
from typing import List, Tuple, Union
2020

21-
__version__ = "4.8.0.dev1"
21+
__version__ = "4.9.0.dev0"
2222

2323

2424
def get_version_tuple(version: str) -> Tuple[Union[int, str], ...]:

0 commit comments

Comments
 (0)