diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index daa449a281..b483c13e7e 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -3,12 +3,21 @@ Release Notes ------------- -Future Release -============== +.. Future Release + ============== + * Enhancements + * Fixes + * Changes + * Documentation Changes + * Testing Changes + +.. Thanks to the following people for contributing to this release: + +v1.29.0 Feb 16, 2024 +==================== .. warning:: This release of Featuretools will not support Python 3.8 - * Enhancements * Fixes * Fix dependency issues (:pr:`2644`, :pr:`2656`) * Add workaround for pandas 2.2.0 bug with nunique and unpin pandas deps (:pr:`2657`) diff --git a/featuretools/tests/test_version.py b/featuretools/tests/test_version.py index 1e82c56e13..6c76c578d5 100644 --- a/featuretools/tests/test_version.py +++ b/featuretools/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "1.28.0" + assert __version__ == "1.29.0" diff --git a/featuretools/version.py b/featuretools/version.py index 5ef9dbbb7e..bee0238a9c 100644 --- a/featuretools/version.py +++ b/featuretools/version.py @@ -1,3 +1,3 @@ -__version__ = "1.28.0" +__version__ = "1.29.0" ENTITYSET_SCHEMA_VERSION = "9.0.0" FEATURES_SCHEMA_VERSION = "10.0.0"