From b46973363a4fecda3a4c4d06ae5931a66df5f56a Mon Sep 17 00:00:00 2001 From: chukarsten <64713315+chukarsten@users.noreply.github.com> Date: Mon, 10 Jan 2022 11:53:16 -0500 Subject: [PATCH] Initial. (#3188) --- docs/source/release_notes.rst | 16 +++++++++++++--- evalml/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 2bbc53ed96..8f0252ee16 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.41.0 Jan. 06, 2022** * Enhancements * Added string support for DataCheckActionCode :pr:`3167` * Added ``DataCheckActionOption`` class :pr:`3134` @@ -10,6 +22,7 @@ Release Notes * Fixed bug in nightly linux tests :pr:`3189` * Changes * Removed usage of scikit-learn's ``LabelEncoder`` in favor of ours :pr:`3161` + * Removed nullable types checking from ``infer_feature_types`` :pr:`3156` * Fixed ``mean_cv_data`` and ``validation_score`` values in AutoMLSearch.rankings to reflect cv score or ``NaN`` when appropriate :pr:`3162` * Documentation Changes * Testing Changes @@ -27,7 +40,6 @@ Release Notes * Changes * ``TimeSeriesParametersDataCheck`` was added to ``DefaultDataChecks`` for time series problems :pr:`3139` * Renamed ``date_index`` to ``time_index`` in ``problem_configuration`` for time series problems :pr:`3137` - * Removed nullable types checking from ``infer_feature_types`` :pr:`3156` * Updated ``nlp-primitives`` minimum version to 2.1.0 :pr:`3166` * Updated minimum version of ``woodwork`` to v0.11.0 :pr:`3171` * Revert `3160` until uninferrable frequency can be addressed earlier in the process :pr:`3198` @@ -36,8 +48,6 @@ Release Notes * Testing Changes * Parameterized tests in ``test_datasets.py`` :pr:`3145` - - .. warning:: **Breaking Changes** diff --git a/evalml/__init__.py b/evalml/__init__.py index 2bfeeaa664..fa740e0efd 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.40.0" +__version__ = "0.41.0" diff --git a/setup.py b/setup.py index f8365fa4a8..a22680a705 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='evalml', - version='0.40.0', + version='0.41.0', author='Alteryx, Inc.', author_email='support@featurelabs.com', description='EvalML is an AutoML library that builds, optimizes, and evaluates machine learning pipelines using domain-specific objective functions.',