diff --git a/doc/conf.py b/doc/conf.py index ac78d66cc3f2b37f230140a1168d0905aba29313..444f941ee55b633ff6aa79990575a6cd5eb7c2e4 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -73,7 +73,7 @@ copyright = u'2010–2011, scikit-learn developers (BSD License)' # built documents. # # The short X.Y version. -version = '0.10' +version = '0.11' # The full version, including alpha/beta/rc tags. import sklearn release = sklearn.__version__ diff --git a/setup.py b/setup.py index 66861a8ff495eb8402a42a1eed25f28e1f021ea4..dff30997d6e4063ff957a1257c47682aa2e86244 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.10-git' +VERSION = '0.11-git' 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 7a7cd447d04001416a2ed9c024ae7b380b797669..d137f61ea6a8d41c3691218cf5b7af1a4659afc0 100644 --- a/sklearn/__init__.py +++ b/sklearn/__init__.py @@ -52,4 +52,4 @@ __all__ = ['check_build', 'cross_validation', 'cluster', 'covariance', 'metrics', 'mixture', 'naive_bayes', 'neighbors', 'pipeline', 'preprocessing', 'qda', 'svm', 'test', 'clone', 'pls'] -__version__ = '0.10-git' +__version__ = '0.11-git'