From 981e4112fe5cad47adaf80a835494a64d0b9636e Mon Sep 17 00:00:00 2001 From: benoitc Date: Wed, 24 Apr 2013 23:52:24 +0200 Subject: [PATCH] bump to 0.17.4 --- docs/source/2013-news.rst | 20 ++++++++++++++++++++ docs/source/news.rst | 9 +++++++-- gunicorn/__init__.py | 2 +- 3 files changed, 28 insertions(+), 3 deletions(-) diff --git a/docs/source/2013-news.rst b/docs/source/2013-news.rst index 2545b61c..0f09cb84 100644 --- a/docs/source/2013-news.rst +++ b/docs/source/2013-news.rst @@ -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 ------------------- diff --git a/docs/source/news.rst b/docs/source/news.rst index ee743a56..7ac53286 100644 --- a/docs/source/news.rst +++ b/docs/source/news.rst @@ -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 diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index 58384842..15e14cb7 100644 --- a/gunicorn/__init__.py +++ b/gunicorn/__init__.py @@ -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__