diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index b2c869b1b5..13e41eab07 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -2,11 +2,7 @@ Release Notes ------------- **Future Releases** * Enhancements - * Added optional ``recommendation_score`` to rank pipelines during AutoMLSearch :pr:`4156` - * Added BytesIO support to PipelinBase.load() :pr:`4179` * Fixes - * Capped numpy at <=1.23.5 as a temporary measure for SHAP :pr:`4172` - * Updated our readthedocs recipe to reenable builds :pr:`4177` * Changes * Documentation Changes * Testing Changes @@ -16,6 +12,15 @@ Release Notes **Breaking Changes** +**v0.76.0 May. 09, 2023** + * Enhancements + * Added optional ``recommendation_score`` to rank pipelines during AutoMLSearch :pr:`4156` + * Added BytesIO support to PipelinBase.load() :pr:`4179` + * Fixes + * Capped numpy at <=1.23.5 as a temporary measure for SHAP :pr:`4172` + * Updated our readthedocs recipe to reenable builds :pr:`4177` + + **v0.75.0 May. 01, 2023** * Fixes * Fixed bug where resetting the holdout data indices would cause time series ``predict_in_sample`` to be wrong :pr:`4161` diff --git a/evalml/__init__.py b/evalml/__init__.py index ed974db715..6ae6a24a73 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.75.0" +__version__ = "0.76.0"