diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 7a649dbb6b..e022d81283 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -2,13 +2,22 @@ Release Notes ------------- -Future Release -============== + +.. Future Release + ============== * Enhancements + * Fixes + * Changes + * Documentation Changes + * Testing Changes + +.. Thanks to the following people for contributing to this release: + +v0.24.1 May 26, 2021 +==================== * Fixes * Update minimum pyyaml requirement to 5.4 (:pr:`1433`) * Update minimum psutil requirement to 5.6.6 (:pr:`1438`) - * Changes * Documentation Changes * Update nbsphinx version to fix docs build issue (:pr:`1436`) * Testing Changes @@ -17,7 +26,7 @@ Future Release * Add unit tests against minimum dependencies for python 3.7 on PRs and main (:pr:`1432`, :pr:`1445`) Thanks to the following people for contributing to this release: - :user:`gsheni`, :user:`rwedge`, :user:`thehomebrewnerd` + :user:`gsheni`, :user:`jeff-hernandez`, :user:`rwedge`, :user:`thehomebrewnerd` v0.24.0 Apr 30, 2021 ==================== diff --git a/featuretools/tests/test_version.py b/featuretools/tests/test_version.py index b1dbdc387f..07df9234e5 100644 --- a/featuretools/tests/test_version.py +++ b/featuretools/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "0.24.0" + assert __version__ == "0.24.1" diff --git a/featuretools/version.py b/featuretools/version.py index f8ab8c2e1f..7fe14931d2 100644 --- a/featuretools/version.py +++ b/featuretools/version.py @@ -1 +1 @@ -__version__ = '0.24.0' +__version__ = '0.24.1' diff --git a/setup.py b/setup.py index 2a78e08723..03400a09ed 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( name='featuretools', - version='0.24.0', + version='0.24.1', packages=find_packages(), description='a framework for automated feature engineering', url='http://featuretools.com',