From ef2ff5d82a1a2508ee1516cfcfd926e0130437b8 Mon Sep 17 00:00:00 2001 From: Roy Wedge Date: Thu, 4 Aug 2022 16:13:43 -0400 Subject: [PATCH] v1.12.1 (#2221) * update release notes * bump version number * lint --- docs/source/release_notes.rst | 14 +++++++++++--- featuretools/tests/test_version.py | 2 +- featuretools/version.py | 2 +- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 91931216f0..09dbe87829 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -3,13 +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.12.1 Aug 4, 2022 +=================== * Fixes * Update ``Trend`` and ``RollingTrend`` primitives to work with ``IntegerNullable`` inputs (:pr:`2204`) * ``camel_and_title_to_snake`` handles snake case strings with numbers (:pr:`2220`) - * Changes * Change ``_get_description`` to split on blank lines to avoid truncating primitive descriptions (:pr:`2219`) * Documentation Changes * Add instructions to add new users to featuretools feedstock (:pr:`2215`) diff --git a/featuretools/tests/test_version.py b/featuretools/tests/test_version.py index 158abdf275..0844657dfa 100644 --- a/featuretools/tests/test_version.py +++ b/featuretools/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "1.12.0" + assert __version__ == "1.12.1" diff --git a/featuretools/version.py b/featuretools/version.py index b518f6eed0..438a38d1e5 100644 --- a/featuretools/version.py +++ b/featuretools/version.py @@ -1 +1 @@ -__version__ = "1.12.0" +__version__ = "1.12.1"