mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
bump to 0.17.4
This commit is contained in:
parent
82099deff2
commit
981e4112fe
@ -1,6 +1,26 @@
|
|||||||
Changelog - 2013
|
Changelog - 2013
|
||||||
================
|
================
|
||||||
|
|
||||||
|
0.17.4 / 2013-04-24
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
- fix unix socket address parsing
|
||||||
|
|
||||||
|
0.17.3 / 2013-04-23
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
- add systemd sockets support
|
||||||
|
- add ``python -m gunicorn.app.wsgiapp`` support
|
||||||
|
- improve logger class inheritance
|
||||||
|
- exit when the config file isn't found
|
||||||
|
- add the -R option to enable stdio inheritance in daemon mode
|
||||||
|
- don't close file descriptors > 3 in daemon mode
|
||||||
|
- improve STDOUT/STDERR logging
|
||||||
|
- fix pythonpath option
|
||||||
|
- fix pidfile creation on Python 3
|
||||||
|
- fix gevent worker exit
|
||||||
|
- fix ipv6 detection when the platform isn't supporting it
|
||||||
|
|
||||||
0.17.2 / 2013-01-07
|
0.17.2 / 2013-01-07
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
|||||||
@ -1,11 +1,16 @@
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
0.17.4 / 2013-04-24
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
- fix unix socket address parsing
|
||||||
|
|
||||||
0.17.3 / 2013-04-23
|
0.17.3 / 2013-04-23
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
- add systemd sockets support
|
- add systemd sockets support
|
||||||
- add ``python -m gunicorn.app.wsgiapp`` support
|
- add ``python -m gunicorn.app.wsgiapp`` support
|
||||||
- improve logger class inheritance
|
- improve logger class inheritance
|
||||||
- exit when the config file isn't found
|
- exit when the config file isn't found
|
||||||
- add the -R option to enable stdio inheritance in daemon mode
|
- add the -R option to enable stdio inheritance in daemon mode
|
||||||
|
|||||||
@ -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, 17, 3)
|
version_info = (0, 17, 4)
|
||||||
__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