From 6715cd3ba47755bffa107136e085e76c86efd0af Mon Sep 17 00:00:00 2001 From: Shane Harvey Date: Wed, 12 Jun 2024 11:07:35 -0700 Subject: [PATCH] BUMP 4.9.0.dev0 (#1672) --- doc/changelog.rst | 25 ++++++++++++++++++++++++- pymongo/_version.py | 2 +- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index 7da4b2457..da52dab47 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -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 ------------------------- diff --git a/pymongo/_version.py b/pymongo/_version.py index bc7653c26..537a340cc 100644 --- a/pymongo/_version.py +++ b/pymongo/_version.py @@ -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], ...]: