From 729a08736ceff0bd77f4736d32cb450827dae3ad Mon Sep 17 00:00:00 2001 From: Roy Wedge Date: Wed, 30 May 2018 17:18:05 -0400 Subject: [PATCH] v0.1.21 (#160) * bump version number * update changelog * fix documentation warning --- .../automated_feature_engineering/primitives.rst | 6 +----- docs/source/changelog.rst | 14 ++++++++++++++ featuretools/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 17 insertions(+), 7 deletions(-) diff --git a/docs/source/automated_feature_engineering/primitives.rst b/docs/source/automated_feature_engineering/primitives.rst index 71ab95e31b..6e2735efdd 100644 --- a/docs/source/automated_feature_engineering/primitives.rst +++ b/docs/source/automated_feature_engineering/primitives.rst @@ -62,13 +62,9 @@ In the example above, we use two types of primitives. **Transform primitives:** These primitives take one or more variables from an entity as an input and output a new variable for that entity. They are applied to a single entity. E.g: ``"hour"``, ``"time_since_previous"``, ``"absolute"``. - - - -.. Built in Primitives -.. ******************* For a DataFrame that lists and describes each built-in primitive in Featuretools, call ``ft.list_primitives()``. + .. ipython:: python ft.list_primitives().head(5) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index d0dc6e7d98..33616305f5 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,20 @@ Changelog --------- +**v0.1.21** May 30, 2018 + * Support Pandas 0.23.0 (:pr:`153`, :pr:`154`, :pr:`155`, :pr:`159`) + * No EntitySet required in loading/saving features (:pr:`141`) + * Use s3 demo csv with better column names (:pr:`139`) + * more reasonable start parameter (:pr:`149`) + * add issue template (:pr:`133`) + * Improve tests (:pr:`136`, :pr:`137`, :pr:`144`, :pr:`147`) + * Remove unused functions (:pr:`140`, :pr:`143`, :pr:`146`) + * Update documentation after recent changes / removals (:pr:`157`) + * Rename demo retail csv file (:pr:`148`) + * Add names for binary (:pr:`142`) + * EntitySet repr to use get_name rather than id (:pr:`134`) + * Ensure config dir is writable (:pr:`135`) + **v0.1.20** Apr 13, 2018 * Primitives as strings in DFS parameters (:pr:`129`) * Integer time index bugfixes (:pr:`128`) diff --git a/featuretools/__init__.py b/featuretools/__init__.py index 158fd39c00..80ddac7d08 100644 --- a/featuretools/__init__.py +++ b/featuretools/__init__.py @@ -12,4 +12,4 @@ from .utils.time_utils import * import featuretools.demo -__version__ = '0.1.20' +__version__ = '0.1.21' diff --git a/setup.py b/setup.py index ac9bb54828..fe4f548aea 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def finalize_options(self): setup( name='featuretools', - version='0.1.20', + version='0.1.21', packages=find_packages(), package_data={'featuretools': ['config.yaml']}, description='a framework for automated feature engineering',