Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Release version 19.8.1
  • Loading branch information
tilgovi committed Apr 30, 2018
1 parent 92ae609 commit 73cc860
Show file tree
Hide file tree
Showing 3 changed files with 8 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="http://docs.gunicorn.org/en/stable">19.8.0</a></strong>
href="http://docs.gunicorn.org/en/stable">19.8.1</a></strong>
</div>

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

19.8.1 / 2018/04/30
===================

- fix: secure scheme headers when bound to a unix socket
(:issue:`1766`, :pr:`1767`)

19.8.0 / 2018/04/28
===================

Expand Down
2 changes: 1 addition & 1 deletion gunicorn/__init__.py
Expand Up @@ -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, 0)
version_info = (19, 8, 1)
__version__ = ".".join([str(v) for v in version_info])
SERVER_SOFTWARE = "gunicorn/%s" % __version__

0 comments on commit 73cc860

Please sign in to comment.