diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index abe22e68f9..1ed15367a5 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,25 @@ Changelog --------- +**v0.3.1** Sept 28, 2018 + * Handling time rewrite (:pr:`245`) + * Update deep_feature_synthesis.py (:pr:`249`) + * Handling return type when creating features from DatetimeTimeIndex (:pr:`266`) + * Update retail.py (:pr:`259`) + * Improve Consistency of Transform Primitives (:pr:`236`) + * Update demo docstrings (:pr:`268`) + * Handle non-string column names (:pr:`255`) + * Clean up merging of aggregation primitives (:pr:`250`) + * Add tests for Entity methods (:pr:`262`) + * Handle no child data when calculating aggregation features with multiple arguments (:pr:`264`) + * Add `is_string` utils function (:pr:`260`) + * Update python versions to match docker container (:pr:`261`) + * Handle where clause when no child data (:pr:`258`) + * No longer cache demo csvs, remove config file (:pr:`257`) + * Avoid stacking "expanding" primitives (:pr:`238`) + * Use randomly generated names in retail csv (:pr:`233`) + * Update README.md (:pr:`243`) + **v0.3.0** Aug 27, 2018 * Improve performance of all feature calculations (:pr:`224`) * Update agg primitives to use more efficient functions (:pr:`215`) diff --git a/featuretools/__init__.py b/featuretools/__init__.py index c873b8b069..146d1ee4f5 100644 --- a/featuretools/__init__.py +++ b/featuretools/__init__.py @@ -12,4 +12,4 @@ from .utils.time_utils import * import featuretools.demo -__version__ = '0.3.0' +__version__ = '0.3.1' diff --git a/setup.py b/setup.py index d366758ead..6d1c204597 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ def finalize_options(self): setup( name='featuretools', - version='0.3.0', + version='0.3.1', packages=find_packages(), description='a framework for automated feature engineering', url='http://featuretools.com',