From 34c4908369968dd0f77897ec9dd8c227e7545478 Mon Sep 17 00:00:00 2001 From: Gael Varoquaux <gael.varoquaux@normalesup.org> Date: Thu, 8 Aug 2013 16:27:33 +0200 Subject: [PATCH] REL: Release 0.14.1 Minor bug fix release to restore proper behavior of setup.py --- doc/whats_new.rst | 6 ++++++ sklearn/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/whats_new.rst b/doc/whats_new.rst index 2bead5d0be..8262d1b4f4 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 36821dbf6a..c63961b6ac 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 -- GitLab