From 3cb0a19be3ab57428cf245e3b310ff6e15d31312 Mon Sep 17 00:00:00 2001 From: chukarsten <64713315+chukarsten@users.noreply.github.com> Date: Tue, 11 Apr 2023 17:19:22 -0400 Subject: [PATCH] Release v0.73.0. (#4122) * Release v0.73.0. * Update release_notes.rst --- docs/source/release_notes.rst | 21 +++++++++++++-------- evalml/__init__.py | 2 +- 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index d07e7c9998..42ae5d76f0 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -1,27 +1,32 @@ Release Notes ------------- **Future Releases** + * Enhancements + * Fixes + * Changes + * Documentation Changes + * Testing Changes + +.. warning:: + + **Breaking Changes** + + +**v0.73.0 Apr. 10, 2023** * Enhancements * Allowed ``InvalidTargetDataCheck`` to return a ``DROP_ROWS`` ``DataCheckActionOption`` :pr:`4116` * Implemented prediction intervals for non-time series native pipelines using the naïve method :pr:`4127` - * Fixes * Changes * Removed unnecessary logic from imputer components prior to nullable type handling :pr:`4038`, :pr:`4043` * Added calls to ``_handle_nullable_types`` in component fit, transform, and predict methods when needed :pr:`4046`, :pr:`4043` * Removed existing nullable type handling across AutoMLSearch to just use new handling :pr:`4085`, :pr:`4043` - * Handled nullable type incompatibility in ``Decomposer`` :pr:`4105`, :pr:`4043` + * Handled nullable type incompatibility in ``Decomposer`` :pr:`4105`, :pr:`4043 * Removed nullable type incompatibility handling for ARIMA and ExponentialSmoothingRegressor :pr:`4129` * Changed the default value for ``null_strategy`` in ``InvalidTargetDataCheck`` to ``drop`` :pr:`4131` * Pinned sktime version to 0.17.0 for nullable types support :pr:`4137` - * Documentation Changes * Testing Changes * Fixed installation of prophet for linux nightly tests :pr:`4114` -.. warning:: - - **Breaking Changes** - - **v0.72.0 Mar. 27, 2023** * Enhancements * Updated `pipeline.get_prediction_intervals()` to add trend prediction interval information from STL decomposer :pr:`4093` diff --git a/evalml/__init__.py b/evalml/__init__.py index e72c6b723c..b4d93ae4c0 100644 --- a/evalml/__init__.py +++ b/evalml/__init__.py @@ -23,4 +23,4 @@ warnings.filterwarnings("ignore", category=FutureWarning) warnings.filterwarnings("ignore", category=DeprecationWarning) -__version__ = "0.72.0" +__version__ = "0.73.0"