diff --git a/doc/htdocs/news.html b/doc/htdocs/news.html
index 3dcf4e2e..31612b07 100644
--- a/doc/htdocs/news.html
+++ b/doc/htdocs/news.html
@@ -50,20 +50,28 @@
News
+
0.6.1 / 2010-02-24
+
+- Added gunicorn config file support for django admin command
+- Fix gunicorn config file. -c was broken.
+- Removed TTIN/TTOU from workers which blocked other signals.
+
+
+
0.6 / 2010-02-22
- Added setproctitle
- Change privilege switch behaviour. We now works like NGINX, master keep the permission, new uid/gid permissions are only set to the workers.
-
+
0.5.1 / 2010-02-22
- Fix umask
- Added debian packaging
-
+
0.5 / 2010-02-20
- Added configuration file handler.
diff --git a/doc/site/news.rst b/doc/site/news.rst
index eeedb3d7..ef5ad7d8 100644
--- a/doc/site/news.rst
+++ b/doc/site/news.rst
@@ -4,6 +4,13 @@ title: News
News
====
+0.6.1 / 2010-02-24
+------------------
+
+* Added gunicorn config file support for django admin command
+* Fix gunicorn config file. -c was broken.
+* Removed TTIN/TTOU from workers which blocked other signals.
+
0.6 / 2010-02-22
------------------
diff --git a/gunicorn/__init__.py b/gunicorn/__init__.py
index 96e0d6e1..8c854e5a 100644
--- a/gunicorn/__init__.py
+++ b/gunicorn/__init__.py
@@ -4,4 +4,4 @@
# See the NOTICE for more information.
-__version__ = "0.6"
+__version__ = "0.6.1"