From 357f629f9fa65f8125e3ef6ca7e1a8b20cf9fdab Mon Sep 17 00:00:00 2001 From: Dave Reed Date: Thu, 27 Apr 2023 17:46:34 -0400 Subject: [PATCH] v1.26.0 (#2568) * initial commit * fixed back ticks --- docs/source/release_notes.rst | 18 +++++++++++++----- featuretools/tests/test_version.py | 2 +- featuretools/version.py | 2 +- 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 8736f53d94..d1dd1765ae 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -3,17 +3,25 @@ Release Notes ------------- -Future Release -============== +.. Future Release + ============== + * Enhancements + * Fixes + * Changes + * Documentation Changes + * Testing Changes + +.. Thanks to the following people for contributing to this release: + +v1.26.0 Apr 27, 2023 +==================== * Enhancements * Introduce New Single-Table DFS Algorithm (:pr:`2516`). This includes **experimental** functionality and is not officially supported. * Add premium primitives install command (:pr:`2545`) * Fixes - * Fix Description of `DaysInMonth` (:pr:`2547`) + * Fix Description of ``DaysInMonth`` (:pr:`2547`) * Changes * Make Dask an optional dependency (:pr:`2560`) - * Documentation Changes - * Testing Changes Thanks to the following people for contributing to this release: :user:`dvreed77`, :user:`gsheni`, :user:`thehomebrewnerd` diff --git a/featuretools/tests/test_version.py b/featuretools/tests/test_version.py index 0f6c1895ed..ab7cc94726 100644 --- a/featuretools/tests/test_version.py +++ b/featuretools/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "1.25.0" + assert __version__ == "1.26.0" diff --git a/featuretools/version.py b/featuretools/version.py index 0658e42b6d..cc5a834240 100644 --- a/featuretools/version.py +++ b/featuretools/version.py @@ -1,3 +1,3 @@ -__version__ = "1.25.0" +__version__ = "1.26.0" ENTITYSET_SCHEMA_VERSION = "9.0.0" FEATURES_SCHEMA_VERSION = "10.0.0"