From ed7417479604e388bd5b7a96380d39434450cf64 Mon Sep 17 00:00:00 2001 From: chukarsten <64713315+chukarsten@users.noreply.github.com> Date: Thu, 19 Aug 2021 16:01:53 -0400 Subject: [PATCH] Initial. (#2658) --- docs/source/release_notes.rst | 13 ++++++++++++- evalml/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 37a8151432..4b3e3c94ec 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -1,6 +1,18 @@ Release Notes ------------- **Future Releases** + * Enhancements + * Fixes + * Changes + * Documentation Changes + * Testing Changes + +.. warning:: + + **Breaking Changes** + + +**v0.31.0 Aug. 19, 2021** * Enhancements * Updated the high variance check in AutoMLSearch to be robust to a variety of objectives and cv scores :pr:`2622` * Use Woodwork's outlier detection for the ``OutliersDataCheck`` :pr:`2637` @@ -22,7 +34,6 @@ Release Notes * ``TimeSeriesRegressionPipeline`` no longer inherits from ``TimeSeriesRegressionPipeline`` :pr:`2649` - **v0.30.2 Aug. 16, 2021** * Fixes * Updated changelog and version numbers to match the release. Release 0.30.1 was release erroneously without a change to the version numbers. 0.30.2 replaces it. diff --git a/evalml/__init__.py b/evalml/__init__.py index d404b0f6c8..ab9aaefdaf 100644 --- a/evalml/__init__.py +++ b/evalml/__init__.py @@ -21,4 +21,4 @@ warnings.filterwarnings("ignore", category=FutureWarning) warnings.filterwarnings("ignore", category=DeprecationWarning) -__version__ = "0.30.2" +__version__ = "0.31.0" diff --git a/setup.py b/setup.py index b2ab315152..d6eded8469 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='evalml', - version='0.30.2', + version='0.31.0', author='Alteryx, Inc.', author_email='support@featurelabs.com', description='EvalML is an AutoML library that builds, optimizes, and evaluates machine learning pipelines using domain-specific objective functions.',