From c35fe1f472554c5d40867c471fb4396a7da0f0de Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Sun, 16 May 2010 21:25:09 +0200 Subject: [PATCH] bump 0.8.2 --- doc/site/news.rst | 7 +++++++ gunicorn/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/doc/site/news.rst b/doc/site/news.rst index 6555c4de..a918ab2e 100644 --- a/doc/site/news.rst +++ b/doc/site/news.rst @@ -4,6 +4,13 @@ title: News News ==== +0.8.2 / 2010-05-16 +------------------ + +- Fix pidfile +- Fix QUIT/HUP in async workers +- Documentation improvments + 0.8.1 / 2010-04-29 ------------------ diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index ea0cae27..8d63a75a 100644 --- a/gunicorn/__init__.py +++ b/gunicorn/__init__.py @@ -3,5 +3,5 @@ # This file is part of gunicorn released under the MIT license. # See the NOTICE for more information. -version_info = (0, 8, 1) +version_info = (0, 8, 2) __version__ = ".".join(map(str, version_info))