diff --git a/docs/source/2015-news.rst b/docs/source/2015-news.rst index b9963461..8757249b 100644 --- a/docs/source/2015-news.rst +++ b/docs/source/2015-news.rst @@ -6,6 +6,34 @@ Changelog - 2015 Please see :doc:`news` for the latest changes. + +19.2.2 / 2015/03/06 +=================== + +Changes +------- + +Core +++++ + +- fix: :issue:`978` make sure a listener is inherutable +- add `check_config` class method to workers +- fix: :issue:`983` fix select timeout in sync worker with multiple + connections +- allows workers to access to the reloader. close :issue:`984` +- raise TypeError insted of AssertionError + +Logging ++++++++ + +- make Logger.loglevel a classs attribute + +Documentation ++++++++++++++ + +- fix: :issue:`988` fix syntax errors in examples/gunicorn_rc + + 19.2.1 / 2015/02/4 ================== @@ -26,8 +54,7 @@ Documentation +++++++++++++ - document security mailing-list in the contributing page. - - + 19.2 / 2015/01/30 ================= diff --git a/docs/source/news.rst b/docs/source/news.rst index 1a99effe..e362efa2 100644 --- a/docs/source/news.rst +++ b/docs/source/news.rst @@ -2,6 +2,32 @@ Changelog ========= +19.2.2 / 2015/03/06 +=================== + +Changes +------- + +Core +++++ + +- fix: :issue:`978` make sure a listener is inherutable +- add `check_config` class method to workers +- fix: :issue:`983` fix select timeout in sync worker with multiple + connections +- allows workers to access to the reloader. close :issue:`984` +- raise TypeError insted of AssertionError + +Logging ++++++++ + +- make Logger.loglevel a classs attribute + +Documentation ++++++++++++++ + +- fix: :issue:`988` fix syntax errors in examples/gunicorn_rc + 19.2.1 / 2015/02/4 ================== diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index d7749f36..1f446c6a 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, 2, 1) +version_info = (19, 2, 2) __version__ = ".".join([str(v) for v in version_info]) SERVER_SOFTWARE = "gunicorn/%s" % __version__