diff --git a/docs/site/index.html b/docs/site/index.html index 3b5fd5940..f2d8ce356 100644 --- a/docs/site/index.html +++ b/docs/site/index.html @@ -16,7 +16,7 @@
Latest version: 21.0.0 + href="https://docs.gunicorn.org/en/stable/">21.0.1
diff --git a/docs/source/2023-news.rst b/docs/source/2023-news.rst index 7b4e963ab..8b472c5e9 100644 --- a/docs/source/2023-news.rst +++ b/docs/source/2023-news.rst @@ -2,6 +2,11 @@ Changelog - 2023 ================ +21.0.1 - 2023-07-17 +=================== + +- fix documentation build + 21.0.0 - 2023-07-17 =================== diff --git a/docs/source/news.rst b/docs/source/news.rst index 14eae72d3..c9f20fe9c 100644 --- a/docs/source/news.rst +++ b/docs/source/news.rst @@ -2,6 +2,11 @@ Changelog ========= +21.0.1 - 2023-07-17 +=================== + +- fix documentation build + 21.0.0 - 2023-07-17 =================== diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index 684c8abe4..693061995 100644 --- a/gunicorn/__init__.py +++ b/gunicorn/__init__.py @@ -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__)