BUMP 4.9.0.dev0 (#1672)

This commit is contained in:
Shane Harvey 2024-06-12 11:07:35 -07:00 committed by GitHub
parent 5dd6ffbbb8
commit 6715cd3ba4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 25 additions and 2 deletions

View File

@ -1,6 +1,22 @@
Changelog
=========
Changes in Version 4.9.0
-------------------------
PyMongo 4.9 brings a number of improvements including:
- A new asynchronous API with full asyncio support.
Issues Resolved
...............
See the `PyMongo 4.9 release notes in JIRA`_ for the list of resolved issues
in this release.
.. _PyMongo 4.9 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=39940
Changes in Version 4.8.0
-------------------------
@ -10,7 +26,6 @@ PyMongo 4.8 brings a number of improvements including:
- The handshake metadata for "os.name" on Windows has been simplified to "Windows" to improve import time.
- The repr of ``bson.binary.Binary`` is now redacted when the subtype is SENSITIVE_SUBTYPE(8).
- A new asynchronous API with full asyncio support.
Unavoidable breaking changes
............................
@ -18,6 +33,14 @@ Unavoidable breaking changes
- Since we are now using ``hatch`` as our build backend, we no longer have a ``setup.py`` file
and require installation using ``pip``.
Issues Resolved
...............
See the `PyMongo 4.8 release notes in JIRA`_ for the list of resolved issues
in this release.
.. _PyMongo 4.8 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=37057
Changes in Version 4.7.3
-------------------------

View File

@ -18,7 +18,7 @@ from __future__ import annotations
import re
from typing import List, Tuple, Union
__version__ = "4.8.0.dev1"
__version__ = "4.9.0.dev0"
def get_version_tuple(version: str) -> Tuple[Union[int, str], ...]: