From 2a3122713039dcca102cec9e97217e345435c906 Mon Sep 17 00:00:00 2001 From: Tamar Grey <64278226+tamargrey@users.noreply.github.com> Date: Thu, 2 Dec 2021 18:02:04 -0500 Subject: [PATCH] v1.3.0 (#1799) * Update version * Update release notes * clean up release notes --- docs/source/release_notes.rst | 16 ++++++++++++---- featuretools/tests/test_version.py | 2 +- featuretools/version.py | 2 +- setup.py | 2 +- 4 files changed, 15 insertions(+), 7 deletions(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 9ad0aa727f..214d2b808c 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -3,18 +3,26 @@ Release Notes ------------- -Future Release -============== +.. Future Release + ============== * Enhancements - * Add ``NumericLag`` transform primitive (:pr:`1797`) * Fixes + * Changes + * Documentation Changes + * Testing Changes + +.. Thanks to the following people for contributing to this release: + +v1.3.0 Dec 2, 2021 +================== + * Enhancements + * Add ``NumericLag`` transform primitive (:pr:`1797`) * Changes * Update pip to 21.3.1 for test requirements (:pr:`1789`) * Documentation Changes * Add Docker install instructions and documentation on the install page. (:pr:`1785`) * Update install page on documentation with correct python version (:pr:`1784`) * Fix formatting in Improving Computational Performance guide (:pr:`1786`) - * Testing Changes Thanks to the following people for contributing to this release: :user:`gsheni`, :user:`HenryRocha`, :user:`tamargrey` :user:`thehomebrewnerd` diff --git a/featuretools/tests/test_version.py b/featuretools/tests/test_version.py index f56efcdf2b..14837d2149 100644 --- a/featuretools/tests/test_version.py +++ b/featuretools/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "1.2.0" + assert __version__ == "1.3.0" diff --git a/featuretools/version.py b/featuretools/version.py index 58d478ab16..19b4f1d605 100644 --- a/featuretools/version.py +++ b/featuretools/version.py @@ -1 +1 @@ -__version__ = '1.2.0' +__version__ = '1.3.0' diff --git a/setup.py b/setup.py index b8cde975c4..4251afd2e9 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name='featuretools', - version='1.2.0', + version='1.3.0', packages=find_packages(), description='a framework for automated feature engineering', url='https://featuretools.com',