diff --git a/README.rst b/README.rst index b20a0b88..73d7858b 100644 --- a/README.rst +++ b/README.rst @@ -68,6 +68,7 @@ Usage --log-level=LOGLEVEL Log level below which to silence messages. [info] --log-file=LOGFILE Log to a file. - equals stdout. [-] -d, --debug Debug mode. only 1 worker. + --spew Install a trace hook --version show program's version number and exit -h, --help show this help message and exit diff --git a/doc/site/news.rst b/doc/site/news.rst index 6a26d965..0600b7ef 100644 --- a/doc/site/news.rst +++ b/doc/site/news.rst @@ -4,6 +4,13 @@ title: News News ==== +0.7.2 / 2010-04-15 +------------------ + +- Added --spew option to help debugging (install a Trace hook) +- Some fixes in async arbiters +- Fix a bug in start_response on error + 0.7.1 / 2010-04-01 ------------------ diff --git a/doc/site/usage.rst b/doc/site/usage.rst index 98df475a..77256f3a 100644 --- a/doc/site/usage.rst +++ b/doc/site/usage.rst @@ -61,6 +61,7 @@ Full command line usage --log-level=LOGLEVEL Log level below which to silence messages. [info] --log-file=LOGFILE Log to a file. - equals stdout. [-] -d, --debug Debug mode. only 1 worker. + --spew Install a trace hook --version show program's version number and exit -h, --help show this help message and exit diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index 3fc83da6..3abc81f0 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, 7, 1) +version_info = (0, 7, 2) __version__ = ".".join(map(str, version_info))