diff --git a/docs/source/release_notes.rst b/docs/source/release_notes.rst index 0d60f4a013..899869f1d3 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.38.0 Nov. 27, 2021** * Enhancements * Added ``data_check_name`` attribute to the data check action class :pr:`3034` * Added ``NumWords`` and ``NumCharacters`` primitives to ``TextFeaturizer`` and renamed ``TextFeaturizer` to ``NaturalLanguageFeaturizer`` :pr:`3030` diff --git a/evalml/__init__.py b/evalml/__init__.py index 38a2649358..bf9fde2135 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.37.0" +__version__ = "0.38.0" diff --git a/setup.py b/setup.py index 7012354a8e..dbb61ae84d 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='evalml', - version='0.37.0', + version='0.38.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.',