diff --git a/doc/changelog.rst b/doc/changelog.rst index 4d95559d6..64c61e587 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -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) -------------------------------------- diff --git a/pymongo/_version.py b/pymongo/_version.py index 6eb73ba97..a0a3bf79b 100644 --- a/pymongo/_version.py +++ b/pymongo/_version.py @@ -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], ...]: