PYTHON-5642 Prep for 4.15.5 patch release. (#2633)

This commit is contained in:
Casey Clements 2025-12-02 13:22:37 -05:00 committed by GitHub
parent 0480525c22
commit 7a8420caad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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], ...]: