From e5d0e1505f8c93d783b275b5cea897140b35481b Mon Sep 17 00:00:00 2001 From: Benoit Chesneau Date: Fri, 6 Mar 2015 11:05:03 +0100 Subject: [PATCH] correct version is 19.3 since changes are added to the core, let's show it in versionning --- docs/site/index.html | 2 +- docs/source/2015-news.rst | 3 +-- docs/source/news.rst | 2 +- gunicorn/__init__.py | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/site/index.html b/docs/site/index.html index 44cf053e..dcc7fed9 100644 --- a/docs/site/index.html +++ b/docs/site/index.html @@ -16,7 +16,7 @@
Latest version: 19.2 + href="http://docs.gunicorn.org/en/19.3.0/news.html#id1">19.3
diff --git a/docs/source/2015-news.rst b/docs/source/2015-news.rst index a4fded12..a459d1a5 100644 --- a/docs/source/2015-news.rst +++ b/docs/source/2015-news.rst @@ -6,8 +6,7 @@ Changelog - 2015 Please see :doc:`news` for the latest changes. - -19.2.2 / 2015/03/06 +19.3.0 / 2015/03/06 =================== Changes diff --git a/docs/source/news.rst b/docs/source/news.rst index 6710510d..ff63cadc 100644 --- a/docs/source/news.rst +++ b/docs/source/news.rst @@ -2,7 +2,7 @@ Changelog ========= -19.2.2 / 2015/03/06 +19.3/0 / 2015/03/06 =================== Changes diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py index 1f446c6a..1ab5933d 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 = (19, 2, 2) +version_info = (19, 3, 0) __version__ = ".".join([str(v) for v in version_info]) SERVER_SOFTWARE = "gunicorn/%s" % __version__