From 68cd6c3b051288fe6be43b3d28fea4855c631e81 Mon Sep 17 00:00:00 2001 From: benoitc Date: Tue, 5 Jan 2016 01:06:42 +0100 Subject: [PATCH] bump to 19.4.5 --- docs/source/2016-news.rst | 7 ++++++- docs/source/news.rst | 5 +++++ gunicorn/__init__.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/docs/source/2016-news.rst b/docs/source/2016-news.rst index ddcc27ef..efb921fe 100644 --- a/docs/source/2016-news.rst +++ b/docs/source/2016-news.rst @@ -4,7 +4,12 @@ Changelog - 2016 .. note:: - Please see :doc:`news` for the latest changes. + Please see :doc:`news` for the latest changes55 + +19.4.5 / 2016/01/05 +=================== + +- fix: NameError fileno in gunicorn.http.wsgi (:issue:`1178`) 19.4.4 / 2016/01/04 =================== diff --git a/docs/source/news.rst b/docs/source/news.rst index 3e0721ba..2d44b074 100644 --- a/docs/source/news.rst +++ b/docs/source/news.rst @@ -2,6 +2,11 @@ Changelog ========= +19.4.5 / 2016/01/05 +=================== + +- fix: NameError fileno in gunicorn.http.wsgi (:issue:`1178`) + 19.4.4 / 2016/01/04 =================== diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index b26f1968..22d5e25c 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, 4, 4) +version_info = (19, 4, 5) __version__ = ".".join([str(v) for v in version_info]) SERVER_SOFTWARE = "gunicorn/%s" % __version__