diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 209552c97b..7fad98c0f7 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.31.0 May 14, 2024 +==================== * Enhancements * Add support for Python 3.12 (:pr:`2713`) * Fixes @@ -14,7 +24,6 @@ Future Release * Remove support for creating ``EntitySets`` from Dask or Pyspark dataframes (:pr:`2705`) * Bump minimum versions of ``tqdm`` and ``pip`` in requirements files (:pr:`2716`) * Use ``filter`` arg in call to ``tarfile.extractall`` to safely deserialize EntitySets (:pr:`2722`) - * Documentation Changes * Testing Changes * Fix serialization test to work with pytest 8.1.1 (:pr:`2694`) * Update to allow minimum dependency checker to run properly (:pr:`2709`) diff --git a/featuretools/tests/test_version.py b/featuretools/tests/test_version.py index 9a43bff842..27dec6f2ac 100644 --- a/featuretools/tests/test_version.py +++ b/featuretools/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "1.30.0" + assert __version__ == "1.31.0" diff --git a/featuretools/version.py b/featuretools/version.py index f284a61a5e..279b5ef620 100644 --- a/featuretools/version.py +++ b/featuretools/version.py @@ -1,3 +1,3 @@ -__version__ = "1.30.0" +__version__ = "1.31.0" ENTITYSET_SCHEMA_VERSION = "9.0.0" FEATURES_SCHEMA_VERSION = "10.0.0"