diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index b697e31de3..3e7debef18 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -3,6 +3,11 @@ Changelog --------- +**v0.1.15** Dec 18, 2017 + * Fix variable type in demo data (:pr:`37`) + * Custom primitive kwarg fix (:pr:`38`) + * Changed order and text of arguments in make_trans_primitive docstring (:pr:`42`) + **v0.1.14** November 20, 2017 * Last time index (:pr:`33`) * Update Scipy version to 1.0.0 (:pr:`31`) diff --git a/featuretools/__init__.py b/featuretools/__init__.py index 3fbed96427..4e12a7c77b 100644 --- a/featuretools/__init__.py +++ b/featuretools/__init__.py @@ -11,4 +11,4 @@ from .utils.pickle_utils import * import featuretools.demo -__version__ = '0.1.14' +__version__ = '0.1.15' diff --git a/setup.py b/setup.py index e8bb97d9f0..05ff398fdd 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def finalize_options(self): setup( name='featuretools', - version='0.1.14', + version='0.1.15', packages=find_packages(), package_data={'featuretools': ['config_yaml.txt']}, description='a framework for automated feature engineering',