Skip to content

Commit 14417ad

Browse files
authored
PYTHON-5411 Prep for 4.13.1 release (#2370)
1 parent 56e6f1c commit 14417ad

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

doc/changelog.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
Changelog
22
=========
33

4+
Changes in Version 4.13.1 (2025/06/10)
5+
--------------------------------------
6+
7+
Version 4.13.1 is a bug fix release.
8+
9+
- Fixed a bug that could raise ``ServerSelectionTimeoutError`` when using timeouts with ``AsyncMongoClient``.
10+
- Fixed a bug that could raise ``NetworkTimeout`` errors on Windows.
11+
12+
Issues Resolved
13+
...............
14+
15+
See the `PyMongo 4.13.1 release notes in JIRA`_ for the list of resolved issues
16+
in this release.
17+
18+
.. _PyMongo 4.13.1 release notes in JIRA: https://jira.mongodb.org/secure/ReleaseNote.jspa?projectId=10004&version=43924
19+
420
Changes in Version 4.13.0 (2025/05/14)
521
--------------------------------------
622

pymongo/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import re
1919
from typing import List, Tuple, Union
2020

21-
__version__ = "4.13.0"
21+
__version__ = "4.13.1"
2222

2323

2424
def get_version_tuple(version: str) -> Tuple[Union[int, str], ...]:

0 commit comments

Comments
 (0)