From b8ea96b6a39b53f2debbd6a892af3485b8921fc8 Mon Sep 17 00:00:00 2001 From: benoitc Date: Sat, 5 Jan 2013 09:48:33 +0100 Subject: [PATCH] bump to 0.17.1 --- gunicorn/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index 864f086a..b38546f4 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 = (0, 17, 0) +version_info = (0, 17, 1) __version__ = ".".join([str(v) for v in version_info]) SERVER_SOFTWARE = "gunicorn/%s" % __version__