Skip to content

Commit

Permalink
Initial. (#3188)
Browse files Browse the repository at this point in the history
  • Loading branch information
chukarsten authored Jan 10, 2022
1 parent e1a35fb commit b469733
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
16 changes: 13 additions & 3 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
@@ -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`
Expand All @@ -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
Expand All @@ -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`
Expand All @@ -36,8 +48,6 @@ Release Notes
* Testing Changes
* Parameterized tests in ``test_datasets.py`` :pr:`3145`



.. warning::

**Breaking Changes**
Expand Down
2 changes: 1 addition & 1 deletion evalml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
warnings.filterwarnings("ignore", category=FutureWarning)
warnings.filterwarnings("ignore", category=DeprecationWarning)

__version__ = "0.40.0"
__version__ = "0.41.0"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name='evalml',
version='0.40.0',
version='0.41.0',
author='Alteryx, Inc.',
author_email='[email protected]',
description='EvalML is an AutoML library that builds, optimizes, and evaluates machine learning pipelines using domain-specific objective functions.',
Expand Down

0 comments on commit b469733

Please sign in to comment.