diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 1ed15367a5..f1fdf5c4ad 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,22 @@ Changelog --------- +**v0.4.0** Oct 31, 2018 + * Remove ft.utils.gen_utils.getsize and make pympler a test requirement (:pr:`299`) + * Update requirements.txt (:pr:`298`) + * Refactor EntitySet.find_path(...) (:pr:`295`) + * Clean up unused methods (:pr:`293`) + * Remove unused parents property of Entity (:pr:`283`) + * Removed relationships parameter (:pr:`284`) + * Improve time index validation (:pr:`285`) + * Encode features with "unknown" class in categorical (:pr:`287`) + * Allow where clauses on direct features in Deep Feature Synthesis (:pr:`279`) + * Change to fullargsspec (:pr:`288`) + * Parallel verbose fixes (:pr:`282`) + * Update tests for python 3.7 (:pr:`277`) + * Check duplicate rows cutoff times (:pr:`276`) + * Load retail demo data using compressed file (:pr:`271`) + **v0.3.1** Sept 28, 2018 * Handling time rewrite (:pr:`245`) * Update deep_feature_synthesis.py (:pr:`249`) diff --git a/featuretools/__init__.py b/featuretools/__init__.py index 146d1ee4f5..6db0ef8d47 100644 --- a/featuretools/__init__.py +++ b/featuretools/__init__.py @@ -12,4 +12,4 @@ from .utils.time_utils import * import featuretools.demo -__version__ = '0.3.1' +__version__ = '0.4.0' diff --git a/setup.py b/setup.py index b2c24f772b..92843c3d30 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def finalize_options(self): setup( name='featuretools', - version='0.3.1', + version='0.4.0', packages=find_packages(), description='a framework for automated feature engineering', url='http://featuretools.com',