From 73ed5f87b7758267b7e19356e3060edcdc166e9c Mon Sep 17 00:00:00 2001 From: benoitc Date: Thu, 22 Apr 2010 21:06:35 +0200 Subject: [PATCH] bump version --- doc/site/news.rst | 2 +- gunicorn/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/site/news.rst b/doc/site/news.rst index 3d5144e4..d897f84b 100644 --- a/doc/site/news.rst +++ b/doc/site/news.rst @@ -4,7 +4,7 @@ title: News News ==== -0.7.3 / 2004-04-22 +0.8.0 / 2004-04-22 ------------------ - Refactored Worker management for better async support. Now use the -k option to set the type of request processing to use diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index bf6c9dbc..389a4893 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, 3) +version_info = (0, 8, 0) __version__ = ".".join(map(str, version_info))