From 644ae4d4f204799160cd2a75f7a8be514d7735f1 Mon Sep 17 00:00:00 2001 From: benoitc Date: Wed, 28 Aug 2013 00:14:58 +0200 Subject: [PATCH] Revert "oups this the 17.6 version" This reverts commit bb71bc841f7422333324b95c988ba0677779304d. --- gunicorn/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index e860223f..a0338c0f 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 = (17, 6) +version_info = (18, 0) __version__ = ".".join([str(v) for v in version_info]) SERVER_SOFTWARE = "gunicorn/%s" % __version__