diff --git a/docs/source/2015-news.rst b/docs/source/2015-news.rst index 9954ce33..4b0d23e0 100644 --- a/docs/source/2015-news.rst +++ b/docs/source/2015-news.rst @@ -6,7 +6,12 @@ Changelog - 2015 Please see :doc:`news` for the latest changes. -19.4.0 / 2015/11/20 +19.4.1 / 2015/11/25 +=================== + +- fix tornado worker (:issue:`1154`) + + 19.4.0 / 2015/11/20 =================== Core diff --git a/docs/source/news.rst b/docs/source/news.rst index 2185fee0..8bd1846b 100644 --- a/docs/source/news.rst +++ b/docs/source/news.rst @@ -2,6 +2,11 @@ Changelog ========= +19.4.1 / 2015/11/25 +=================== + +- fix tornado worker (:issue:`1154`) + 19.4.0 / 2015/11/20 =================== diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index d3fb3278..31e6c112 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, 0) +version_info = (19, 4, 1) __version__ = ".".join([str(v) for v in version_info]) SERVER_SOFTWARE = "gunicorn/%s" % __version__