diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index c0ccec817..fc2e1d930 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -3,16 +3,24 @@ Release Notes ------------- -Future Release -============== +.. Future Release + ============== * Enhancements + * Fixes + * Changes + * Documentation Changes + * Testing Changes + +.. Thanks to the following people for contributing to this release: + +v0.27.0 Dec 12, 2023 +==================== * Fixes * Removed warning due to deprecated ``infer_datetime_format`` argument in pandas (:pr:`1785`) * Fix GitHub Actions to kick off EvalML and Featuretools unit tests (:pr:`1795`) * Changes * Temporarily restrict pyarrow version due to serialization issues (:pr:`1768`) * Update pandas categorical type call and remove black with ruff formatter (:pr:`1794`) - * Documentation Changes * Testing Changes * Removed old performance testing workflow (:pr:`1776`) diff --git a/release.md b/release.md index 0966830fe..91abfa4ad 100644 --- a/release.md +++ b/release.md @@ -7,7 +7,7 @@ Before starting the release process, verify the following: - All work required for this release has been completed and the team is ready to release. - [All Github Actions Tests are green on main for Woodwork](https://github.com/alteryx/woodwork/actions?query=branch%3Amain+workflow%3ATests). - Featuretools Tests are green with Woodwork main: - - [![Unit Tests - Featuretools with Woodwork main branch](https://github.com/alteryx/featuretools/actions/workflows/unit_tests_with_woodwork_main_branch.yaml/badge.svg?branch=main)](https://github.com/alteryx/featuretools/actions/workflows/unit_tests_with_woodwork_main_branch.yaml) + - [![Tests - Featuretools with Woodwork main branch](https://github.com/alteryx/featuretools/actions/workflows/tests_with_woodwork_main_branch.yaml/badge.svg)](https://github.com/alteryx/featuretools/actions/workflows/tests_with_woodwork_main_branch.yaml) - EvalML Tests are green with Woodwork main: - [![Unit Tests - EvalML with Woodwork main branch](https://github.com/alteryx/evalml/actions/workflows/unit_tests_with_woodwork_main_branch.yaml/badge.svg?branch=main)](https://github.com/alteryx/evalml/actions/workflows/unit_tests_with_woodwork_main_branch.yaml) - The [ReadtheDocs build](https://readthedocs.com/projects/feature-labs-inc-datatables/) for "latest" is marked as passed. To avoid mysterious errors, best practice is to empty your browser cache when reading new versions of the docs! diff --git a/woodwork/tests/test_version.py b/woodwork/tests/test_version.py index 8912b0054..a426ffe78 100644 --- a/woodwork/tests/test_version.py +++ b/woodwork/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "0.26.0" + assert __version__ == "0.27.0" diff --git a/woodwork/version.py b/woodwork/version.py index 7c4a9591e..cde6d8971 100644 --- a/woodwork/version.py +++ b/woodwork/version.py @@ -1 +1 @@ -__version__ = "0.26.0" +__version__ = "0.27.0"