From 981d8d62172d927c238fa57d16bf5534bc862c91 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Thu, 11 Sep 2025 05:40:09 -0500 Subject: [PATCH] PYTHON-5542 Prepare for 4.15.1 Release --- doc/changelog.rst | 18 ++++++++++++++++++ pymongo/_version.py | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index 64c61e5877..cf84843eb7 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,24 @@ Changelog ========= +Changes in Version 4.15.1 (2025/09/11) +-------------------------------------- + +Version 4.15.1 is a bug fix release. + + - Fixed a bug in :meth:`~pymongo.synchronous.encryption.ClientEncryption.encrypt` and :meth:`~pymongo.asynchronous.encryption.AsyncClientEncryption.encrypt` + that would cause a ``TypeError`` when using ``pymongocrypt<1.16`` by passing an unsupported ``type_opts`` parameter even if + Queryable Encryption text queries beta was not used. + +Issues Resolved +............... + +See the `PyMongo 4.15.1 release notes in JIRA`_ for the list of resolved issues +in this release. + +.. _PyMongo 4.15.1 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=46486 + + Changes in Version 4.15.0 (2025/09/10) -------------------------------------- diff --git a/pymongo/_version.py b/pymongo/_version.py index 88ad5e2056..7abecf4416 100644 --- a/pymongo/_version.py +++ b/pymongo/_version.py @@ -18,7 +18,7 @@ import re from typing import List, Tuple, Union -__version__ = "4.15.1.dev0" +__version__ = "4.15.1" def get_version_tuple(version: str) -> Tuple[Union[int, str], ...]: