bump to 21.2.0

This commit is contained in:
benoitc 2023-07-19 13:31:10 +02:00
parent f5669f6475
commit ab9c8301cb
4 changed files with 17 additions and 4 deletions

View File

@ -16,7 +16,7 @@
<div class="logo-div">
<div class="latest">
Latest version: <strong><a
href="https://docs.gunicorn.org/en/stable/">21.1.0</a></strong>
href="https://docs.gunicorn.org/en/stable/">21.2.0</a></strong>
</div>
<div class="logo"><img src="images/logo.jpg" ></div>

View File

@ -2,10 +2,14 @@
Changelog - 2023
================
21.1.0 - 2023-07-18
21.2.0 - 2023-07-19
===================
- fix thread worker: fix socket removal from the queue
- fix thread worker: revert change considering connection as idle .
*** NOTE ***
This is fixing the bad file description error.
21.0.1 - 2023-07-17
===================

View File

@ -2,6 +2,15 @@
Changelog
=========
21.2.0 - 2023-07-19
===================
- fix thread worker: revert change considering connection as idle .
*** NOTE ***
This is fixing the bad file description error.
21.1.0 - 2023-07-18
===================

View File

@ -3,7 +3,7 @@
# This file is part of gunicorn released under the MIT license.
# See the NOTICE for more information.
version_info = (21, 1, 0)
version_info = (21, 2, 0)
__version__ = ".".join([str(v) for v in version_info])
SERVER = "gunicorn"
SERVER_SOFTWARE = "%s/%s" % (SERVER, __version__)