diff --git a/docs/source/news.rst b/docs/source/news.rst index 1d627beb..8ee33174 100644 --- a/docs/source/news.rst +++ b/docs/source/news.rst @@ -1,8 +1,27 @@ Changelog ========= +0.15.0 / 2012-10-18 +------------------- + +- new documentation site on http://docs.gunicorn.org +- new website on http://gunicorn.org +- add `haproxy PROXY protocol `_ support +- add ForwardedAllowIPS option: allows to filter Front-end's IPs + allowed to handle X-Forwarded-* headers. +- add callable hooks for paster config +- add x-forwarded-proto as secure scheme default (Heroku is using this) +- allows gunicorn to load a pre-compiled application +- support file reopening & reexec for all loggers +- initialize the logging config file with defaults. +- set timeout for client socket (slow client DoS). +- NoMoreData, ChunkMissingTerminator, InvalidChunkSize are now + IOError exceptions +- fix graceful shutdown in gevent +- fix limit request line check + 0.14.6 / 2012-07-26 --------------------- +------------------- - fix gevent & subproces diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index e33b50c1..e71c6ecc 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, 14, 6) +version_info = (0, 15, 0) __version__ = ".".join(map(str, version_info)) SERVER_SOFTWARE = "gunicorn/%s" % __version__