We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 787602f commit fc85068Copy full SHA for fc85068
2 files changed
docs/content/news.md
@@ -1,6 +1,18 @@
1
<span id="news"></span>
2
# Changelog
3
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
16
## 25.0.2 - 2026-02-06
17
18
### Bug Fixes
gunicorn/__init__.py
@@ -2,7 +2,7 @@
# This file is part of gunicorn released under the MIT license.
# See the NOTICE for more information.
-version_info = (25, 0, 2)
+version_info = (25, 0, 3)
__version__ = ".".join([str(v) for v in version_info])
SERVER = "gunicorn"
SERVER_SOFTWARE = "%s/%s" % (SERVER, __version__)
0 commit comments