diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 8fdd272686..496fa5c729 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,12 @@ Changelog --------- +**v0.1.18** Feb 27, 2018 + * fixes related instances bug (:pr:`97`) + * Adding non-feature columns to calculated feature matrix (:pr:`78`) + * Relax numpy version req (:pr:`82`) + * Remove `entity_from_csv`, tests, and lint (:pr:`71`) + **v0.1.17** Jan 18, 2018 * LatLong type (:pr:`57`) * Last time index fixes (:pr:`70`) diff --git a/featuretools/__init__.py b/featuretools/__init__.py index dbcb6adab4..b9b0884e23 100644 --- a/featuretools/__init__.py +++ b/featuretools/__init__.py @@ -12,4 +12,4 @@ from .utils.pickle_utils import * import featuretools.demo -__version__ = '0.1.17' +__version__ = '0.1.18' diff --git a/setup.py b/setup.py index e0380f2b0b..3cbd1b989f 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def finalize_options(self): setup( name='featuretools', - version='0.1.17', + version='0.1.18', packages=find_packages(), package_data={'featuretools': ['config_yaml.txt']}, description='a framework for automated feature engineering',