diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index ab387c0f1c..77a25072db 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -3,6 +3,14 @@ Changelog --------- **Future Releases** + * Enhancements + * Fixes + * Changes + * Documentation Changes + * Testing Changes + + +**v0.7.0 Mar. 9, 2020** * Enhancements * Added emacs buffers to .gitignore :pr:`350` * Add CatBoost (gradient-boosted trees) classification and regression components and pipelines :pr:`247` diff --git a/evalml/__init__.py b/evalml/__init__.py index ef2cff210e..b8f02bd61e 100644 --- a/evalml/__init__.py +++ b/evalml/__init__.py @@ -27,4 +27,4 @@ warnings.filterwarnings("ignore", category=DeprecationWarning) -__version__ = '0.6.0' +__version__ = '0.7.0' diff --git a/setup.py b/setup.py index c482c73339..685eb4b672 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='evalml', - version='0.6.0', + version='0.7.0', author='Feature Labs, Inc.', author_email='support@featurelabs.com', url='http://www.featurelabs.com/',