diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index d26fe27182..3b41e730af 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -3,6 +3,13 @@ Changelog --------- **Future Releases** + * Enhancements + * Fixes + * Changes + * Documentation Changes + * Testing Changes + +**v0.6.0 Dec. 16, 2019** * Enhancements * Added ability to create a plot of feature importances :pr:`133` * Add early stopping to AutoML using patience and tolerance parameters :pr:`241` diff --git a/evalml/__init__.py b/evalml/__init__.py index 415e06dca3..ef2cff210e 100644 --- a/evalml/__init__.py +++ b/evalml/__init__.py @@ -27,4 +27,4 @@ warnings.filterwarnings("ignore", category=DeprecationWarning) -__version__ = '0.5.2' +__version__ = '0.6.0' diff --git a/setup.py b/setup.py index e0badc5f1e..45143c58fa 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='evalml', - version='0.5.2', + version='0.6.0', author='Feature Labs, Inc.', author_email='support@featurelabs.com', url='http://www.featurelabs.com/',