From 35382f24bb4a84f14844348d40f2c8bca3563edc Mon Sep 17 00:00:00 2001 From: benoitc Date: Wed, 11 Dec 2013 10:00:13 +0100 Subject: [PATCH] bump to gunicorn 18.2 --- gunicorn/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index dde8b757..08c15bfc 100644 --- a/gunicorn/__init__.py +++ b/gunicorn/__init__.py @@ -3,6 +3,6 @@ # This file is part of gunicorn released under the MIT license. # See the NOTICE for more information. -version_info = (18, 1) +version_info = (18, 2) __version__ = ".".join([str(v) for v in version_info]) SERVER_SOFTWARE = "gunicorn/%s" % __version__