Prepare 4.15 release (#2523)

This commit is contained in:
Jeffrey A. Clark 2025-09-10 12:03:54 -04:00 committed by GitHub
parent 98e9f5ecc1
commit 1514e9b784
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 2 deletions

View File

@ -1,7 +1,9 @@
Changelog
=========
Changes in Version 4.15.0 (XXXX/XX/XX)
Changes in Version 4.15.0 (2025/09/10)
--------------------------------------
PyMongo 4.15 brings a number of changes including:
- Added :class:`~pymongo.encryption_options.TextOpts`,
@ -13,6 +15,7 @@ PyMongo 4.15 brings a number of changes including:
``pymongocrypt>=1.16`` is required for text query support.
- Added :class:`bson.decimal128.DecimalEncoder` and :class:`bson.decimal128.DecimalDecoder`
to support encoding and decoding of BSON Decimal128 values to decimal.Decimal values using the TypeRegistry API.
- Added support for Windows ``arm64`` wheels.
Changes in Version 4.14.1 (2025/08/19)
--------------------------------------

View File

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