bump to 19.2.2

This commit is contained in:
Benoit Chesneau 2015-03-06 10:32:35 +01:00
parent 30177b879a
commit 39761603cd
3 changed files with 56 additions and 3 deletions

View File

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

View File

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

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, 2, 1)
version_info = (19, 2, 2)
__version__ = ".".join([str(v) for v in version_info])
SERVER_SOFTWARE = "gunicorn/%s" % __version__