diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 51c26d43d9..77dddeea19 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.25.0 Jun. 01, 2021** * Enhancements * Upgraded minimum woodwork to version 0.3.1. Previous versions will not be supported :pr:`2181` * Added a new callback parameter for ``explain_predictions_best_worst`` :pr:`2308` diff --git a/evalml/__init__.py b/evalml/__init__.py index 0f21a84327..75cdb0c946 100644 --- a/evalml/__init__.py +++ b/evalml/__init__.py @@ -20,4 +20,4 @@ warnings.filterwarnings("ignore", category=FutureWarning) warnings.filterwarnings("ignore", category=DeprecationWarning) -__version__ = '0.24.2' +__version__ = '0.25.0' diff --git a/setup.py b/setup.py index 2b5c7137db..f32e27dd48 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='evalml', - version='0.24.2', + version='0.25.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.',