From 485e0a5e56f2d524b5cbc31538a0c455e3ddd858 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Mon, 27 Nov 2023 13:44:40 -0600 Subject: [PATCH] BUMP 4.6.1 --- doc/changelog.rst | 7 +++++++ pymongo/_version.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index e04452e483..4a2a634f41 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,13 @@ Changelog ========= +Changes in Version 4.6.1 +------------------------ + +PyMongo 4.6.1 fixes the following bug: + +- Ensure retryable read ``OperationFailure`` errors re-raise exception when 0 or NoneType error code is provided. + Changes in Version 4.6 ---------------------- diff --git a/pymongo/_version.py b/pymongo/_version.py index c1b30dc88f..d1767be3d7 100644 --- a/pymongo/_version.py +++ b/pymongo/_version.py @@ -17,7 +17,7 @@ from typing import Tuple, Union -version_tuple: Tuple[Union[int, str], ...] = (4, 6, 0) +version_tuple: Tuple[Union[int, str], ...] = (4, 6, 1) def get_version_string() -> str: