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"