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