bump version and update news & doc.

This commit is contained in:
benoitc 2010-04-15 03:22:23 +02:00
parent cd5894f59c
commit 2cfca856bc
4 changed files with 10 additions and 1 deletions

View File

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

View File

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

View File

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

View File

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