diff --git a/doc/whats_new.rst b/doc/whats_new.rst index 2bead5d0be6f8c5a702247fcd7e45ca079e8f733..8262d1b4f45122b046ff90f218cfb83cc0c4e42a 100644 --- a/doc/whats_new.rst +++ b/doc/whats_new.rst @@ -1,5 +1,11 @@ .. currentmodule:: sklearn +0.14.1 +======= + +0.14.1 is a minor bug-fix release that fixed a small regression in the +setup.py + .. _changes_0_14: 0.14 diff --git a/sklearn/__init__.py b/sklearn/__init__.py index 36821dbf6a314b3b67f983ffa0980c6b77270f11..c63961b6ac3b6937e7097db3e3f28698869b47c1 100644 --- a/sklearn/__init__.py +++ b/sklearn/__init__.py @@ -13,7 +13,7 @@ machine-learning as a versatile tool for science and engineering. See http://scikit-learn.org for complete documentation. """ import sys -__version__ = '0.14' +__version__ = '0.14.1' try: # This variable is injected in the __builtins__ by the build