From 527de6c10cc854c6ce486aa92d3470bb204388f4 Mon Sep 17 00:00:00 2001 From: Dave Reed Date: Wed, 15 Feb 2023 10:00:19 -0500 Subject: [PATCH] v1.23.0 (#2491) * release v1.23.0 * fixed release process --- docs/source/release_notes.rst | 15 +++++++++++---- featuretools/tests/test_version.py | 2 +- featuretools/version.py | 2 +- release.md | 2 +- 4 files changed, 14 insertions(+), 7 deletions(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 4ed07eae24..923fde7c62 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -3,21 +3,28 @@ Release Notes ------------- -Future Release -============== +.. Future Release + ============== * Enhancements * Fixes * Changes - * Change ``TotalWordLength`` and ``UpperCaseWordCount`` to return ``IntegerNullable`` (:pr:`2474`) * Documentation Changes * Testing Changes + +.. Thanks to the following people for contributing to this release: + +v1.23.0 Feb 15, 2023 +==================== + * Changes + * Change ``TotalWordLength`` and ``UpperCaseWordCount`` to return ``IntegerNullable`` (:pr:`2474`) + * Testing Changes * Add GitHub Actions cache to speed up workflows (:pr:`2475`) * Fix latest dependency checker install command (:pr:`2476`) * Add pull request check for linked issues to CI workflow (:pr:`2477`, :pr:`2481`) * Remove make package from lint workflow (:pr:`2479`) Thanks to the following people for contributing to this release: - :user:`gsheni`, :user:`sbadithe` + :user:`dreed`, :user:`gsheni`, :user:`sbadithe` v1.22.0 Jan 31, 2023 ==================== diff --git a/featuretools/tests/test_version.py b/featuretools/tests/test_version.py index 2336d80864..1f47ec8640 100644 --- a/featuretools/tests/test_version.py +++ b/featuretools/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "1.22.0" + assert __version__ == "1.23.0" diff --git a/featuretools/version.py b/featuretools/version.py index f5c08d6f55..5abb3fdaec 100644 --- a/featuretools/version.py +++ b/featuretools/version.py @@ -1,3 +1,3 @@ -__version__ = "1.22.0" +__version__ = "1.23.0" ENTITYSET_SCHEMA_VERSION = "9.0.0" FEATURES_SCHEMA_VERSION = "10.0.0" diff --git a/release.md b/release.md index be9e8976bc..ff3ef45a88 100644 --- a/release.md +++ b/release.md @@ -83,7 +83,7 @@ Checklist before merging: - All tests are currently green on checkin and on `main`. - The ReadtheDocs build for the release PR branch has passed, and the resulting docs contain the expected release notes. - PR has been reviewed and approved. -- Confirm with the team that `main` will be frozen until step 2 (Github Release) is complete. +- Confirm with the team that `main` will be frozen until step 3 (Github Release) is complete. After merging, verify again that ReadtheDocs "latest" is correct.