mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
say hello to 0.17.0
This commit is contained in:
parent
89a1936ce6
commit
82cc98746e
@ -1,6 +1,18 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
0.17.0 / 2012-12-25
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
- allows gunicorn to bind to multiple address
|
||||||
|
- add SSL support
|
||||||
|
- add syslog support
|
||||||
|
- add nworkers_changed hook
|
||||||
|
- add response arg for post_request hook
|
||||||
|
- parse command line with argparse (replace deprecated optparse)
|
||||||
|
- fix PWD detection in arbiter
|
||||||
|
- miscellenaeous PEP8 fixes
|
||||||
|
|
||||||
0.16.1 / 2012-11-19
|
0.16.1 / 2012-11-19
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
|||||||
@ -3,6 +3,6 @@
|
|||||||
# This file is part of gunicorn released under the MIT license.
|
# This file is part of gunicorn released under the MIT license.
|
||||||
# See the NOTICE for more information.
|
# See the NOTICE for more information.
|
||||||
|
|
||||||
version_info = (0, 16, 1)
|
version_info = (0, 17, 0)
|
||||||
__version__ = ".".join([str(v) for v in version_info])
|
__version__ = ".".join([str(v) for v in version_info])
|
||||||
SERVER_SOFTWARE = "gunicorn/%s" % __version__
|
SERVER_SOFTWARE = "gunicorn/%s" % __version__
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user