diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index d27eb0d7d1..45f27a066a 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.4.0 Jan 10, 2022 +=================== * Enhancements * Add LatLong transform primitives - GeoMidpoint, IsInGeoBox, CityblockDistance (:pr:`1814`) * Add issue templates for bugs, feature requests and documentation improvements (:pr:`1834`) @@ -24,7 +34,7 @@ Future Release * Remove fastparquet as a test requirement (:pr:`1833`) Thanks to the following people for contributing to this release: - :user:`gsheni`, :user:`rwedge`, :user:`thehomebrewnerd` + :user:`davesque`, :user:`gsheni`, :user:`rwedge`, :user:`thehomebrewnerd` v1.3.0 Dec 2, 2021 diff --git a/featuretools/tests/test_version.py b/featuretools/tests/test_version.py index 14837d2149..e57ce37fe8 100644 --- a/featuretools/tests/test_version.py +++ b/featuretools/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "1.3.0" + assert __version__ == "1.4.0" diff --git a/featuretools/version.py b/featuretools/version.py index 19b4f1d605..96e3ce8d9f 100644 --- a/featuretools/version.py +++ b/featuretools/version.py @@ -1 +1 @@ -__version__ = '1.3.0' +__version__ = '1.4.0' diff --git a/setup.py b/setup.py index 4251afd2e9..9171f5ff5d 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name='featuretools', - version='1.3.0', + version='1.4.0', packages=find_packages(), description='a framework for automated feature engineering', url='https://featuretools.com',