Skip to content

Commit ebe8bfb

Browse files
authored
PYTHON-5542 Prepare for 4.15.1 Release (mongodb#2527)
1 parent bc4ee39 commit ebe8bfb

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

doc/changelog.rst

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

4+
Changes in Version 4.15.1 (2025/09/11)
5+
--------------------------------------
6+
7+
Version 4.15.1 is a bug fix release.
8+
9+
- Fixed a bug in :meth:`~pymongo.synchronous.encryption.ClientEncryption.encrypt` and :meth:`~pymongo.asynchronous.encryption.AsyncClientEncryption.encrypt`
10+
that would cause a ``TypeError`` when using ``pymongocrypt<1.16`` by passing an unsupported ``type_opts`` parameter even if
11+
Queryable Encryption text queries beta was not used.
12+
13+
Issues Resolved
14+
...............
15+
16+
See the `PyMongo 4.15.1 release notes in JIRA`_ for the list of resolved issues
17+
in this release.
18+
19+
.. _PyMongo 4.15.1 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=46486
20+
21+
422
Changes in Version 4.15.0 (2025/09/10)
523
--------------------------------------
624

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.15.1.dev0"
21+
__version__ = "4.15.1"
2222

2323

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

0 commit comments

Comments
 (0)