diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 4ab80cac75..242c6b38f0 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -1,6 +1,22 @@ Release Notes ------------- -**Future Release** +**Future Releases** + * Enhancements + * Fixes + * Changes + * Documentation Changes + * Testing Changes + +.. warning:: + + **Breaking Changes** + + +**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. + +**v0.30.1 Aug. 12, 2021** * Enhancements * Added ``DatetimeFormatDataCheck`` for time series problems :pr:`2603` * Added ``ProphetRegressor`` to estimators :pr:`2242` diff --git a/evalml/__init__.py b/evalml/__init__.py index 4917cd6c38..d404b0f6c8 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.0" +__version__ = "0.30.2" diff --git a/setup.py b/setup.py index 4dbdf22b56..eb5dbc7153 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name='evalml', - version='0.30.0', + version='0.30.2', 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.',