diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index ef8e64ea91..4e04d3781c 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.5.1 Nov. 15, 2019** * Enhancements * Added basic outlier detection guardrail :pr:`151` * Added basic ID column guardrail :pr:`135` @@ -20,7 +27,6 @@ Changelog * Updated documentation to show max_time enhancements :pr:`189` * Updated release instructions for RTD :pr:`193` * Added contributing instructions :pr:`213` - * Testing Changes **v0.5.0 Oct. 29, 2019** * Enhancements diff --git a/evalml/__init__.py b/evalml/__init__.py index 21cacca42e..813d90c09b 100644 --- a/evalml/__init__.py +++ b/evalml/__init__.py @@ -27,4 +27,4 @@ warnings.filterwarnings("ignore", category=DeprecationWarning) -__version__ = '0.5.0' +__version__ = '0.5.1' diff --git a/setup.py b/setup.py index 0fe366ad52..58eca6064c 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ setup( name='evalml', - version='0.5.0', + version='0.5.1', author='Feature Labs, Inc.', author_email='support@featurelabs.com', url='http://www.featurelabs.com/',