Skip to content

Commit ab9c830

Browse files
committed
bump to 21.2.0
1 parent f5669f6 commit ab9c830

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

docs/site/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<div class="logo-div">
1717
<div class="latest">
1818
Latest version: <strong><a
19-
href="https://docs.gunicorn.org/en/stable/">21.1.0</a></strong>
19+
href="https://docs.gunicorn.org/en/stable/">21.2.0</a></strong>
2020
</div>
2121

2222
<div class="logo"><img src="images/logo.jpg" ></div>

docs/source/2023-news.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,14 @@
22
Changelog - 2023
33
================
44

5-
21.1.0 - 2023-07-18
5+
21.2.0 - 2023-07-19
66
===================
77

8-
- fix thread worker: fix socket removal from the queue
8+
- fix thread worker: revert change considering connection as idle .
9+
10+
*** NOTE ***
11+
12+
This is fixing the bad file description error.
913

1014
21.0.1 - 2023-07-17
1115
===================

docs/source/news.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
Changelog
33
=========
44

5+
21.2.0 - 2023-07-19
6+
===================
7+
8+
- fix thread worker: revert change considering connection as idle .
9+
10+
*** NOTE ***
11+
12+
This is fixing the bad file description error.
13+
514
21.1.0 - 2023-07-18
615
===================
716

gunicorn/__init__.py

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

6-
version_info = (21, 1, 0)
6+
version_info = (21, 2, 0)
77
__version__ = ".".join([str(v) for v in version_info])
88
SERVER = "gunicorn"
99
SERVER_SOFTWARE = "%s/%s" % (SERVER, __version__)

0 commit comments

Comments
 (0)