diff --git a/doc/changelog.rst b/doc/changelog.rst index 305c989106..d2b3ef17ed 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,11 +1,14 @@ 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:`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) -------------------------------------- diff --git a/pymongo/_version.py b/pymongo/_version.py index 6eb73ba97c..a0a3bf79bb 100644 --- a/pymongo/_version.py +++ b/pymongo/_version.py @@ -18,7 +18,7 @@ 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], ...]: