From a3aa403fd7bbf4e4f3842947c122720454e04951 Mon Sep 17 00:00:00 2001 From: Dylan Sherry Date: Fri, 2 Jul 2021 18:14:12 -0400 Subject: [PATCH] Release v0.28.0 (#2467) --- docs/source/release_notes.rst | 15 +++++++++++---- evalml/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 9d476cad33..94e58899a8 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -1,6 +1,17 @@ Release Notes ------------- **Future Release** + * Enhancements + * Fixes + * Changes + * Documentation Changes + * Testing Changes + +.. warning:: + + **Breaking Changes** + +**v0.28.0 Jul. 2, 2021** * Enhancements * Added support for showing a Individual Conditional Expectations plot when graphing Partial Dependence :pr:`2386` * Exposed ``thread_count`` for Catboost estimators as ``n_jobs`` parameter :pr:`2410` @@ -20,10 +31,6 @@ Release Notes * Updated workflows to store pytest runtimes as test artifacts :pr:`2448` * Added ``AutoMLTestEnv`` test fixture for making it easy to mock automl tests :pr:`2406` -.. warning:: - - **Breaking Changes** - **v0.27.0 Jun. 22, 2021** * Enhancements * Adds force plots for prediction explanations :pr:`2157` diff --git a/evalml/__init__.py b/evalml/__init__.py index 1d20e52f84..929281f30b 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.27.0" +__version__ = "0.28.0" diff --git a/setup.py b/setup.py index 72f85304b6..72dd5c1428 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='evalml', - version='0.27.0', + version='0.28.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.',