From 29f0394cdd381df176a3df3c25bb3fdd2486a173 Mon Sep 17 00:00:00 2001 From: Randall Leeds Date: Tue, 3 Jul 2018 13:09:09 -0700 Subject: [PATCH] Release version 19.9.0 --- docs/site/index.html | 2 +- docs/source/news.rst | 2 +- gunicorn/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/site/index.html b/docs/site/index.html index 2d032b9f4..b53def37d 100644 --- a/docs/site/index.html +++ b/docs/site/index.html @@ -16,7 +16,7 @@
Latest version: 19.8.1 + href="http://docs.gunicorn.org/en/stable">19.9.0
diff --git a/docs/source/news.rst b/docs/source/news.rst index be9e8fc77..e4386ab4f 100644 --- a/docs/source/news.rst +++ b/docs/source/news.rst @@ -2,7 +2,7 @@ Changelog ========= -19.x / not released +19.9.0 / 2018/07/03 =================== - fix: address a regression that prevented syslog support from working diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index 5ba499a8e..78204797b 100644 --- a/gunicorn/__init__.py +++ b/gunicorn/__init__.py @@ -3,6 +3,6 @@ # This file is part of gunicorn released under the MIT license. # See the NOTICE for more information. -version_info = (19, 8, 1) +version_info = (19, 9, 0) __version__ = ".".join([str(v) for v in version_info]) SERVER_SOFTWARE = "gunicorn/%s" % __version__