mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
bump to 19.2.2
This commit is contained in:
parent
30177b879a
commit
39761603cd
@ -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
|
||||
=================
|
||||
|
||||
|
||||
@ -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
|
||||
==================
|
||||
|
||||
|
||||
@ -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__
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user