Skip to content

Commit fc85068

Browse files
committed
chore: prepare release 25.0.3
1 parent 787602f commit fc85068

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

docs/content/news.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
<span id="news"></span>
22
# Changelog
33

4+
## 25.0.3 - 2026-02-07
5+
6+
### Bug Fixes
7+
8+
- Fix RuntimeError when StopIteration is raised inside ASGI response body
9+
coroutine (PEP 479 compliance)
10+
11+
- Fix deprecation warning for passing maxsplit as positional argument in
12+
`re.split()` (Python 3.13+)
13+
14+
---
15+
416
## 25.0.2 - 2026-02-06
517

618
### Bug Fixes

gunicorn/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# This file is part of gunicorn released under the MIT license.
33
# See the NOTICE for more information.
44

5-
version_info = (25, 0, 2)
5+
version_info = (25, 0, 3)
66
__version__ = ".".join([str(v) for v in version_info])
77
SERVER = "gunicorn"
88
SERVER_SOFTWARE = "%s/%s" % (SERVER, __version__)

0 commit comments

Comments
 (0)