Release version 19.9.0

This commit is contained in:
Randall Leeds 2018-07-03 13:09:09 -07:00
parent 3e265d4319
commit 29f0394cdd
3 changed files with 3 additions and 3 deletions

View File

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

View File

@ -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

View File

@ -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__