From b555f011f144a02ca09ac5d877c70ae9ba2626bd Mon Sep 17 00:00:00 2001 From: Karsten Chu Date: Thu, 3 Mar 2022 10:20:14 -0500 Subject: [PATCH] Initial. --- docs/source/release_notes.rst | 19 ++++++++++--------- evalml/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 12 insertions(+), 11 deletions(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 1851c3c44b..8e224d7cc6 100644 --- a/docs/source/release_notes.rst +++ b/docs/source/release_notes.rst @@ -3,26 +3,30 @@ **Future Releases** * Enhancements - * Added ``test_size`` parameter to ``ClassImbalanceDataCheck`` :pr:`3341` - * Make target optional for ``NoVarianceDataCheck`` :pr:`3339` * Fixes * Changes - * Removed ``python_version<3.9`` environment marker from sktime dependency :pr:`3332` - * Updated ``DatetimeFormatDataCheck`` to return all messages and not return early if NaNs are detected :pr:`3354` * Documentation Changes - * Added in-line tabs and copy-paste functionality to documentation, overhauled Install page :pr:`3353` * Testing Changes .. warning:: **Breaking Changes** +**v0.46.0 Mar. 03, 2022** + * Enhancements + * Added ``test_size`` parameter to ``ClassImbalanceDataCheck`` :pr:`3341` + * Make target optional for ``NoVarianceDataCheck`` :pr:`3339` + * Changes + * Removed ``python_version<3.9`` environment marker from sktime dependency :pr:`3332` + * Updated ``DatetimeFormatDataCheck`` to return all messages and not return early if NaNs are detected :pr:`3354` + * Documentation Changes + * Added in-line tabs and copy-paste functionality to documentation, overhauled Install page :pr:`3353` + **v0.45.0 Feb. 17, 2022** * Enhancements * Added support for pandas >= 1.4.0 :pr:`3324` * Standardized feature importance for estimators :pr:`3305` * Replaced usage of private method with Woodwork's public ``get_subset_schema`` method :pr:`3325` - * Fixes * Changes * Added an ``is_cv`` property to the datasplitters used :pr:`3297` * Changed SimpleImputer to ignore Natural Language columns :pr:`3324` @@ -49,7 +53,6 @@ * Documentation Changes * Update documentation and docstring for `validate_holdout_datasets` for time series problems :pr:`3278` * Fixed mistake in documentation where wrong objective was used for calculating percent-better-than-baseline :pr:`3285` - * Testing Changes .. warning:: @@ -75,7 +78,6 @@ * Renamed ``HighlyNullDataCheck`` to ``NullDataCheck`` :pr:`3197` * Updated data check ``validate()`` output to return a list of warnings and errors instead of a dictionary :pr:`3244` * Capped ``pandas`` at < 1.4.0 :pr:`3274` - * Documentation Changes * Testing Changes * Bumped minimum ``IPython`` version to 7.16.3 in ``test-requirements.txt`` based on dependabot feedback :pr:`3269` @@ -109,7 +111,6 @@ * Changed the default objective to ``MedianAE`` from ``R2`` for time series regression :pr:`3205` * Removed all-nan Unknown to Double logical conversion in ``infer_feature_types`` :pr:`3196` * Checking the validity of holdout data for time series problems can be performed by calling ``pipelines.utils.validate_holdout_datasets`` prior to calling ``predict`` :pr:`3208` - * Documentation Changes * Testing Changes * Update auto approve workflow trigger and delete branch after merge :pr:`3265` diff --git a/evalml/__init__.py b/evalml/__init__.py index e8f189931a..73ff84c90e 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.45.0" +__version__ = "0.46.0" diff --git a/setup.py b/setup.py index a036a8badb..26d7bdfc50 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='evalml', - version='0.45.0', + version='0.46.0', author='Alteryx, Inc.', author_email='open_source_support@alteryx.com', description='EvalML is an AutoML library that builds, optimizes, and evaluates machine learning pipelines using domain-specific objective functions.',