From e8c9709fadf46a0ff1e76e74753d13844d951be9 Mon Sep 17 00:00:00 2001 From: Roy Wedge Date: Fri, 29 May 2020 19:48:38 -0400 Subject: [PATCH] v0.15.0 (#1005) * bump version number * update changelog * add hidden future release section --- docs/source/changelog.rst | 13 ++++++++++--- featuretools/tests/test_version.py | 2 +- featuretools/version.py | 2 +- setup.py | 2 +- 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index b622945571..f3ec462381 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,7 +2,15 @@ Changelog --------- -**Future Release** +.. **Future Release** + * Enhancements + * Fixes + * Changes + * Documentation Changes + * Testing Changes + Thanks to the following people for contributing to this release: + +**v0.15.0 May 29, 2020** * Enhancements * Add ``get_default_aggregation_primitives`` and ``get_default_transform_primitives`` (:pr:`945`) * Allow cutoff time dataframe columns to be in any order (:pr:`969`, :pr:`995`) @@ -15,7 +23,6 @@ Changelog * Normalized type_strings of ``Variable`` classes so that the ``find_variable_types`` function produces a dictionary with a clear key to name transition (:pr:`982`, :pr:`996`) * Remove pandas.datetime in test_calculate_feature_matrix due to deprecation (:pr:`998`) - * Changes * Documentation Changes * Add python 3.8 support for docs (:pr:`983`) * Adds consistent Entityset Docstrings (:pr:`986`) @@ -24,7 +31,7 @@ Changelog * Update testing dependencies (:pr:`976`) Thanks to the following people for contributing to this release: - :user:`gsheni`, :user:`rwedge`, :user:`thehomebrewnerd`, :user:`sebrahimi1988`, :user:`ctduffy`, :user:`rightx2`, :user:`jeff-hernandez`, :user:`tuethan1999`, :user:`frances-h` + :user:`ctduffy`, :user:`frances-h`, :user:`gsheni`, :user:`jeff-hernandez`, :user:`rightx2`, :user:`rwedge`, :user:`sebrahimi1988`, :user:`thehomebrewnerd`, :user:`tuethan1999` **Breaking Changes** diff --git a/featuretools/tests/test_version.py b/featuretools/tests/test_version.py index 9f2d0e38c8..d80af98859 100644 --- a/featuretools/tests/test_version.py +++ b/featuretools/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "0.14.0" + assert __version__ == "0.15.0" diff --git a/featuretools/version.py b/featuretools/version.py index ef91994070..a842d05a77 100644 --- a/featuretools/version.py +++ b/featuretools/version.py @@ -1 +1 @@ -__version__ = '0.14.0' +__version__ = '0.15.0' diff --git a/setup.py b/setup.py index 2ed2117b6a..8083bfcbc3 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='featuretools', - version='0.14.0', + version='0.15.0', packages=find_packages(), description='a framework for automated feature engineering', url='http://featuretools.com',