Skip to content

Commit

Permalink
bump 21.0.1: fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitc committed Jul 17, 2023
1 parent 033dca6 commit 547f856
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/site/index.html
Expand Up @@ -16,7 +16,7 @@
<div class="logo-div">
<div class="latest">
Latest version: <strong><a
href="https://docs.gunicorn.org/en/stable/">21.0.0</a></strong>
href="https://docs.gunicorn.org/en/stable/">21.0.1</a></strong>
</div>

<div class="logo"><img src="images/logo.jpg" ></div>
Expand Down
5 changes: 5 additions & 0 deletions docs/source/2023-news.rst
Expand Up @@ -2,6 +2,11 @@
Changelog - 2023
================

21.0.1 - 2023-07-17
===================

- fix documentation build

21.0.0 - 2023-07-17
===================

Expand Down
5 changes: 5 additions & 0 deletions docs/source/news.rst
Expand Up @@ -2,6 +2,11 @@
Changelog
=========

21.0.1 - 2023-07-17
===================

- fix documentation build

21.0.0 - 2023-07-17
===================

Expand Down
2 changes: 1 addition & 1 deletion gunicorn/__init__.py
Expand Up @@ -3,7 +3,7 @@
# This file is part of gunicorn released under the MIT license.
# See the NOTICE for more information.

version_info = (21, 0, 0)
version_info = (21, 0, 1)
__version__ = ".".join([str(v) for v in version_info])
SERVER = "gunicorn"
SERVER_SOFTWARE = "%s/%s" % (SERVER, __version__)

0 comments on commit 547f856

Please sign in to comment.