say hello to 0.17.0

This commit is contained in:
benoitc 2012-12-25 06:35:43 +01:00
parent 89a1936ce6
commit 82cc98746e
2 changed files with 19 additions and 7 deletions

View File

@ -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
------------------- -------------------

View File

@ -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__