From d78c9a445088c30c98d14e5dd76ccd0e5e43a518 Mon Sep 17 00:00:00 2001 From: Tamar Grey <64278226+tamargrey@users.noreply.github.com> Date: Fri, 16 Feb 2024 11:05:49 -0500 Subject: [PATCH] v1.29.0 (#2672) * Make changes for next release * fix date --- docs/source/release_notes.rst | 15 ++++++++++++--- featuretools/tests/test_version.py | 2 +- featuretools/version.py | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) 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"