diff --git a/doc/htdocs/index.html b/doc/htdocs/index.html
index df36d2d0..9ed3d290 100644
--- a/doc/htdocs/index.html
+++ b/doc/htdocs/index.html
@@ -79,6 +79,11 @@ def app(environ, start_response):
+
Version 0.14.5 / 2012-06-24
+
+ - fix logging during daemonisation
+
+
Version 0.14.4 / 2012-06-24
- new --graceful-timeout option
diff --git a/doc/site/news.rst b/doc/site/news.rst
index 9357072b..347532c5 100644
--- a/doc/site/news.rst
+++ b/doc/site/news.rst
@@ -8,6 +8,11 @@ _TOC_TOP_
_TOC_BOT_
+0.14.5 / 2012-06-24
+-------------------
+
+- fix logging during daemonisation
+
0.14.4 / 2012-06-24
-------------------
diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py
index 27cd8a6b..c9e41f58 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, 14, 4)
+version_info = (0, 14, 5)
__version__ = ".".join(map(str, version_info))
SERVER_SOFTWARE = "gunicorn/%s" % __version__