bump to 0.17.4

This commit is contained in:
benoitc 2013-04-24 23:52:24 +02:00
parent 82099deff2
commit 981e4112fe
3 changed files with 28 additions and 3 deletions

View File

@ -1,6 +1,26 @@
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
-------------------

View File

@ -1,11 +1,16 @@
Changelog
=========
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
- 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

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