From ca20f1333c53b5c6d905ec9c59a3c012a47a1517 Mon Sep 17 00:00:00 2001 From: Gaurav Sheni Date: Thu, 13 Apr 2023 14:51:43 -0400 Subject: [PATCH] v1.25.0 (#2543) * Update version.py * Update test_version.py * Update release_notes.rst --- docs/source/release_notes.rst | 7 ++----- featuretools/tests/test_version.py | 2 +- featuretools/version.py | 2 +- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 8671a71ff3..a750f0d5d1 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -3,22 +3,19 @@ Release Notes ------------- -Future Release -============== +v1.24.0 Apr 13, 2023 +==================== * Enhancements * Add ``MaxCount``, ``MedianCount``, ``MaxMinDelta``, ``NUniqueDays``, ``NMostCommonFrequency``, ``NUniqueDaysOfCalendarYear``, ``NUniqueDaysOfMonth``, ``NUniqueMonths``, ``NUniqueWeeks``, ``IsFirstWeekOfMonth`` (:pr:`2533`) * Add ``HasNoDuplicates``, ``NthWeekOfMonth``, ``IsMonotonicallyDecreasing``, ``IsMonotonicallyIncreasing``, ``IsUnique`` (:pr:`2537`) - * Fixes * Changes * Restrict pandas to < 2.0.0 (:pr:`2533`) * Upgrade minimum pandas to 1.5.0 (:pr:`2537`) * Removed the ``Correlation`` and ``AutoCorrelation`` primitive as these could lead to data leakage (:pr:`2537`) * Remove IntegerNullable support for ``Kurtosis`` primitive (:pr:`2537`) - * Documentation Changes - * Testing Changes Thanks to the following people for contributing to this release: :user:`gsheni` diff --git a/featuretools/tests/test_version.py b/featuretools/tests/test_version.py index 76e36b4b95..0f6c1895ed 100644 --- a/featuretools/tests/test_version.py +++ b/featuretools/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "1.24.0" + assert __version__ == "1.25.0" diff --git a/featuretools/version.py b/featuretools/version.py index a391150d52..0658e42b6d 100644 --- a/featuretools/version.py +++ b/featuretools/version.py @@ -1,3 +1,3 @@ -__version__ = "1.24.0" +__version__ = "1.25.0" ENTITYSET_SCHEMA_VERSION = "9.0.0" FEATURES_SCHEMA_VERSION = "10.0.0"