From 012d42c9fd1b639089a55ff8a303677db455798b Mon Sep 17 00:00:00 2001 From: Jeremy Shih Date: Tue, 11 Jul 2023 11:54:13 -0400 Subject: [PATCH] Release v0.78.0 (#4229) * Upgrade to 0.78.0 * Release notes * Add back breaking change --- docs/source/release_notes.rst | 15 +++++++++++++-- evalml/__init__.py | 2 +- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index f0f9df7d4c..8faf1117e9 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -1,6 +1,18 @@ Release Notes ------------- **Future Releases** + * Enhancements + * Fixes + * Changes + * Documentation Changes + * Testing Changes + +.. warning:: + + **Breaking Changes** + + +**v0.78.0 Jul. 10, 2023** * Enhancements * Add run_feature_selection to AutoMLSearch and Default Algorithm :pr:`4210` * Added ``SMAPE`` to the standard metrics for time series problems :pr:`4220` @@ -10,7 +22,6 @@ Release Notes * Upgraded minimum SHAP version to 0.42.0 and unpinned numpy version :pr:`4228` * Documentation Changes * Updated API reference :pr:`4213` - * Testing Changes .. warning:: @@ -18,7 +29,7 @@ Release Notes * Removed Decision Tree and CatBoost Estimators from AutoML search :pr:`4205` -**v0.77.0 June. 07, 2023** +**v0.77.0 Jun. 07, 2023** * Enhancements * Added ``check_distribution`` function for determining if the predicted distribution matches the true one :pr:`4184` * Added ``get_recommendation_score_breakdown`` function for insight on the recommendation score :pr:`4188` diff --git a/evalml/__init__.py b/evalml/__init__.py index d3f0e30863..8d9f6de649 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.77.0" +__version__ = "0.78.0"