diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 258fb8d7d8..9d8b1c7736 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -3,8 +3,18 @@ Release Notes ------------- -Future Release -============== +.. Future Release + ============== + * Enhancements + * Fixes + * Changes + * Documentation Changes + * Testing Changes + +.. Thanks to the following people for contributing to this release: + +v1.2.0 Nov 15, 2021 +=================== * Enhancements * Add Rolling Transform primitives with integer parameters (:pr:`1770`) * Fixes @@ -12,8 +22,6 @@ Future Release * Changes * Add new version of featuretools_tsfresh_primitives as an add-on library (:pr:`1772`) * Add ``load_weather`` as demo dataset for time series :pr:`1777` - * Documentation Changes - * Testing Changes Thanks to the following people for contributing to this release: :user:`gsheni`, :user:`tamargrey` diff --git a/featuretools/tests/test_version.py b/featuretools/tests/test_version.py index d7c11803c9..f56efcdf2b 100644 --- a/featuretools/tests/test_version.py +++ b/featuretools/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "1.1.0" + assert __version__ == "1.2.0" diff --git a/featuretools/version.py b/featuretools/version.py index 1a72d32e57..58d478ab16 100644 --- a/featuretools/version.py +++ b/featuretools/version.py @@ -1 +1 @@ -__version__ = '1.1.0' +__version__ = '1.2.0' diff --git a/setup.py b/setup.py index 0281a9c80a..b8cde975c4 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name='featuretools', - version='1.1.0', + version='1.2.0', packages=find_packages(), description='a framework for automated feature engineering', url='https://featuretools.com',