diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index c73cfd69a6..d637f2f8d6 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -1,6 +1,17 @@ Release Notes ------------- **Future Releases** + * Enhancements + * Fixes + * Changes + * Testing Changes + +.. warning:: + + **Breaking Changes** + + +**v0.32.1 Sep. 10, 2021** * Enhancements * Added ``verbose`` flag to ``AutoMLSearch`` to run search in silent mode by default :pr:`2645` * Added label encoder to ``XGBoostClassifier`` to remove the warning :pr:`2701` diff --git a/evalml/__init__.py b/evalml/__init__.py index c263d7169c..16b47d209f 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.32.0" +__version__ = "0.32.1" diff --git a/setup.py b/setup.py index 05f232b794..1a3a547f8c 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='evalml', - version='0.32.0', + version='0.32.1', 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.',