From fa81afb69a9136b0aba8e09315f2149faf8dbe7f Mon Sep 17 00:00:00 2001 From: chukarsten <64713315+chukarsten@users.noreply.github.com> Date: Wed, 13 Apr 2022 10:58:46 -0400 Subject: [PATCH] Release v.0.50.0 (#3461) --- docs/source/release_notes.rst | 12 +++++++++++- evalml/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index a72f2b1ad0..7618e32262 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -1,7 +1,17 @@ Release Notes ------------- - **Future Releases** + * Enhancements + * Fixes + * Changes + * Documentation Changes + * Testing Changes + +.. warning:: + + **Breaking Changes** + +**v0.50.0 Apr. 12, 2022** * Enhancements * Added ``TimeSeriesImputer`` component :pr:`3374` * Replaced ``pipeline_parameters`` and ``custom_hyperparameters`` with ``search_parameters`` in ``AutoMLSearch`` :pr:`3373`, :pr:`3427` diff --git a/evalml/__init__.py b/evalml/__init__.py index dfadb667e0..de584c42e5 100644 --- a/evalml/__init__.py +++ b/evalml/__init__.py @@ -23,4 +23,4 @@ warnings.filterwarnings("ignore", category=FutureWarning) warnings.filterwarnings("ignore", category=DeprecationWarning) -__version__ = "0.49.0" +__version__ = "0.50.0" diff --git a/setup.py b/setup.py index cd375d3c79..f052811733 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='evalml', - version='0.49.0', + version='0.50.0', author='Alteryx, Inc.', author_email='open_source_support@alteryx.com', description='EvalML is an AutoML library that builds, optimizes, and evaluates machine learning pipelines using domain-specific objective functions.',