From fedb7e097e5b7f59f30dd13b65f082350c69de50 Mon Sep 17 00:00:00 2001 From: benoitc Date: Thu, 18 Oct 2012 21:58:33 +0200 Subject: [PATCH] bump to 0.15.0 --- docs/source/news.rst | 21 ++++++++++++++++++++- gunicorn/__init__.py | 2 +- 2 files changed, 21 insertions(+), 2 deletions(-) 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__