diff --git a/doc/themes/scikit-learn/layout.html b/doc/themes/scikit-learn/layout.html
index e9f8de43bb66e9582b0d319293617523294b7994..da28aa229269f7fcd2d1555292d7365f627226a6 100644
--- a/doc/themes/scikit-learn/layout.html
+++ b/doc/themes/scikit-learn/layout.html
@@ -152,7 +152,7 @@
     {% else %}
     <h3>News</h3>
 
-    <p>scikit-learn 0.10 is available
+    <p>scikit-learn 0.11 is available
     for <a href="https://sourceforge.net/projects/scikit-learn/files/">download</a>.
     See <a href="{{pathto('whats_new')}}">what's new</a> and tips
     on <a href="{{pathto('install')}}">installing</a>.</p>
diff --git a/doc/whats_new.rst b/doc/whats_new.rst
index 2cec50a226b3816be33943fb95b8892efd3af3a1..da2651326c6ceb5829949e752891e311e63c7a87 100644
--- a/doc/whats_new.rst
+++ b/doc/whats_new.rst
@@ -182,6 +182,58 @@ API changes summary
      arbitrary Minkowski metric for nearest neighbors searches.
 
 
+People
+------
+   * 282  `Andreas Müller`_
+   * 239  `Peter Prettenhofer`_
+   * 198  `Gael Varoquaux`_
+   * 129  `Olivier Grisel`_
+   * 114  `Mathieu Blondel`_
+   * 103  Clay Woolam
+   *  96  `Lars Buitinck`_
+   *  88  `Jaques Grobler`_
+   *  82  `Alexandre Gramfort`_
+   *  50  `Bertrand Thirion`_
+   *  42  `Robert Layton`_
+   *  28  flyingimmidev
+   *  26  `Jake Vanderplas`_
+   *  26  Shiqiao Du
+   *  21  `Satrajit Ghosh`_
+   *  17  `David Marek`_
+   *  17  `Gilles Louppe`_
+   *  14  `Vlad Niculae`_
+   *  11  Yannick Schwartz
+   *  10  `Fabian Pedregosa`_
+   *   9  fcostin
+   *   7  Nick Wilson
+   *   5  Adrien Gaidon
+   *   5  `Nicolas Pinto`_
+   *   4  `David Warde-Farley`_
+   *   5  Nelle Varoquaux
+   *   5  Emmanuelle Gouillart
+   *   3  Joonas Sillanpää
+   *   3  Paolo Losi
+   *   2  Charles McCarthy
+   *   2  Roy Hyunjin Han
+   *   2  Scott White
+   *   2  ibayer
+   *   1  Brandyn White
+   *   1  Carlos Scheidegger
+   *   1  Claire Revillet
+   *   1  Conrad Lee
+   *   1  Edouard Duchesnay
+   *   1  Jan Hendrik Metzen
+   *   1  Meng Xinfan
+   *   1  Rob Zinkov
+   *   1  Shiqiao
+   *   1  Udi Weinsberg
+   *   1  Virgile Fritsch
+   *   1  Xinfan Meng
+   *   1  Yaroslav Halchenko
+   *   1  jansoe
+   *   1  Leon Palafox
+
+
 .. _changes_0_10:
 
 0.10
@@ -1120,3 +1172,5 @@ of commits):
 .. _Scott White: http://twitter.com/scottblanc
 
 .. _Jaques Grobler: https://github.com/jaquesgrobler/scikit-learn/wiki/Jaques-Grobler
+
+.. _David Marek: http://http://www.davidmarek.cz/
diff --git a/setup.py b/setup.py
index 8fa1da812b6de7d05598ea89df5b574f3908e169..9f09672a671d0b8359dfe515b69c69d9d3eedb29 100644
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@ MAINTAINER_EMAIL = 'fabian.pedregosa@inria.fr'
 URL = 'http://scikit-learn.sourceforge.net'
 LICENSE = 'new BSD'
 DOWNLOAD_URL = 'http://sourceforge.net/projects/scikit-learn/files/'
-VERSION = '0.11-git'
+VERSION = '0.11'
 
 import setuptools  # we are using a setuptools namespace
 from numpy.distutils.core import setup
diff --git a/sklearn/__init__.py b/sklearn/__init__.py
index e2d0883072bfe26de330e697ff666a4b2b8f3d85..400dadfb051ade132b6b39999791bcd45c922870 100644
--- a/sklearn/__init__.py
+++ b/sklearn/__init__.py
@@ -56,4 +56,4 @@ __all__ = ['check_build', 'cross_validation', 'cluster', 'covariance',
            'metrics', 'mixture', 'naive_bayes', 'neighbors', 'pipeline',
            'preprocessing', 'qda', 'svm', 'test', 'clone', 'pls']
 
-__version__ = '0.11-git'
+__version__ = '0.11'