From 9344680f3980c84eb1bb376feef007896864c823 Mon Sep 17 00:00:00 2001 From: David Sanders Date: Fri, 23 Jul 2021 17:37:00 -0400 Subject: [PATCH] v0.26.1 (#1553) * Bump version to 0.26.1 * Update release notes --- docs/source/release_notes.rst | 17 ++++++++++++----- featuretools/tests/test_version.py | 2 +- featuretools/version.py | 2 +- setup.py | 2 +- 4 files changed, 15 insertions(+), 8 deletions(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 07106d11ac..52e15a4d57 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -3,18 +3,25 @@ Release Notes ------------- -Future Release -============== +.. Future Release + ============== * Enhancements * Fixes - * Set ``name`` attribute for ``EmailAddressToDomain`` primitive (:pr:`1543`) * Changes * Documentation Changes - * Remove and ignore unnecessary graph files (:pr:`1544`) * Testing Changes +.. Thanks to the following people for contributing to this release: + +v0.26.1 Jul 23, 2021 +==================== + * Fixes + * Set ``name`` attribute for ``EmailAddressToDomain`` primitive (:pr:`1543`) + * Documentation Changes + * Remove and ignore unnecessary graph files (:pr:`1544`) + Thanks to the following people for contributing to this release: - :user:`rwedge` + :user:`davesque`, :user:`rwedge` v0.26.0 Jul 15, 2021 ==================== diff --git a/featuretools/tests/test_version.py b/featuretools/tests/test_version.py index 7692a58837..6286ed9265 100644 --- a/featuretools/tests/test_version.py +++ b/featuretools/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "0.26.0" + assert __version__ == "0.26.1" diff --git a/featuretools/version.py b/featuretools/version.py index 826d20e8b6..f96e1c6bed 100644 --- a/featuretools/version.py +++ b/featuretools/version.py @@ -1 +1 @@ -__version__ = '0.26.0' +__version__ = '0.26.1' diff --git a/setup.py b/setup.py index 73caaa4846..3e2c9e52cf 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( name='featuretools', - version='0.26.0', + version='0.26.1', packages=find_packages(), description='a framework for automated feature engineering', url='http://featuretools.com',