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__