From 740cd9975261bbcc105fec167dcf89d5107499e6 Mon Sep 17 00:00:00 2001 From: Tamar Grey Date: Mon, 26 Feb 2024 11:35:10 -0500 Subject: [PATCH] update versionn number and release notes --- docs/source/release_notes.rst | 15 +++++++++++---- featuretools/tests/test_version.py | 2 +- featuretools/version.py | 2 +- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 1b7e4823dd..4dbaf683fc 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -3,18 +3,25 @@ Release Notes ------------- -Future Release -============== +.. Future Release + ============== * Enhancements * Fixes * Changes - * Update min requirements for numpy, pandas and Woodwork (:pr:`2681`) * Documentation Changes * Testing Changes + +.. Thanks to the following people for contributing to this release: + +v1.29.0 Feb 26, 2024 +==================== + * Changes + * Update min requirements for numpy, pandas and Woodwork (:pr:`2681`) + * Testing Changes * Update ``make_ecommerce_entityset`` to work without Dask (:pr:`2677`) Thanks to the following people for contributing to this release: - :user:`thehomebrewnerd` + :user:`tamargrey`, :user:`thehomebrewnerd` v1.29.0 Feb 16, 2024 ==================== diff --git a/featuretools/tests/test_version.py b/featuretools/tests/test_version.py index 6c76c578d5..9a43bff842 100644 --- a/featuretools/tests/test_version.py +++ b/featuretools/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "1.29.0" + assert __version__ == "1.30.0" diff --git a/featuretools/version.py b/featuretools/version.py index bee0238a9c..f284a61a5e 100644 --- a/featuretools/version.py +++ b/featuretools/version.py @@ -1,3 +1,3 @@ -__version__ = "1.29.0" +__version__ = "1.30.0" ENTITYSET_SCHEMA_VERSION = "9.0.0" FEATURES_SCHEMA_VERSION = "10.0.0"