diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 04eb05119..effa4d024 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -3,8 +3,18 @@ Release Notes ------------- -Future Release -============== +.. Future Release + ============== + * Enhancements + * Fixes + * Changes + * Documentation Changes + * Testing Changes + +.. Thanks to the following people for contributing to this release: + +v0.21.0 December 1, 2022 +======================== * Enhancements * Improved ``Boolean`` and ``BooleanNullable`` inference to detect common string representations of boolean values (:pr:`1549`) * Added the ``get_outliers`` and ``medcouple_dict`` functions to ``WoodworkColumnAccessor`` so that the medcouple statistic can be used for outlier detection (:pr:`1547`) diff --git a/woodwork/tests/test_version.py b/woodwork/tests/test_version.py index 895d0e1c0..ba64a80a2 100644 --- a/woodwork/tests/test_version.py +++ b/woodwork/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "0.20.0" + assert __version__ == "0.21.0" diff --git a/woodwork/version.py b/woodwork/version.py index 5f4bb0b34..6a726d853 100644 --- a/woodwork/version.py +++ b/woodwork/version.py @@ -1 +1 @@ -__version__ = "0.20.0" +__version__ = "0.21.0"