From 7a8420caad3244afe6f44af6e9caf3d6d25c1247 Mon Sep 17 00:00:00 2001 From: Casey Clements Date: Tue, 2 Dec 2025 13:22:37 -0500 Subject: [PATCH] PYTHON-5642 Prep for 4.15.5 patch release. (#2633) --- doc/changelog.rst | 2 +- pymongo/_version.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index d20502184..940a6a664 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,7 +1,7 @@ Changelog ========= -Changes in Version 4.15.5 (2025/11/25) +Changes in Version 4.15.5 (2025/12/02) -------------------------------------- Version 4.15.5 is a bug fix release. diff --git a/pymongo/_version.py b/pymongo/_version.py index db45e19cc..df584e627 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.5.dev0" +__version__ = "4.15.5" def get_version_tuple(version: str) -> Tuple[Union[int, str], ...]: