From 16c04fe79d13127ee34c003b7014680fd1257c3b Mon Sep 17 00:00:00 2001 From: Roy Wedge Date: Fri, 15 Feb 2019 15:08:29 -0500 Subject: [PATCH] v0.6.1 (#436) * bump version number * update changelog --- docs/source/changelog.rst | 28 ++++++++++++++++++++++++++++ featuretools/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 30 insertions(+), 2 deletions(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 3e2ffea973..3621a22125 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -2,6 +2,34 @@ Changelog --------- +**v0.6.1** Feb 15, 2019 + * Cumulative primitives (:pr:`410`) + * Entity.query_by_values now preserves row order of underlying data (:pr:`428`) + * Implementing Country Code and Sub Region Codes as variable types (:pr:`430`) + * Added IPAddress and EmailAddress variable types (:pr:`426`) + * Install data and dependencies (:pr:`403`) + * Add TimeSinceFirst, fix TimeSinceLast (:pr:`388`) + * Allow user to pass in desired feature return types (:pr:`372`) + * Add new configuration object (:pr:`401`) + * Replace NUnique get_function (:pr:`434`) + * _calculate_idenity_features now only returns the features asked for, instead of the entire entity (:pr:`429`) + * Primitive function name uniqueness (:pr:`424`) + * Update NumCharacters and NumWords primitives (:pr:`419`) + * Removed Variable.dtype (:pr:`416`, :pr:`433`) + * Change to zipcode rep, str for pandas (:pr:`418`) + * Remove pandas version upper bound (:pr:`408`) + * Make S3 dependencies optional (:pr:`404`) + * Check that agg_primitives and trans_primitives are right primitive type (:pr:`397`) + * Mean primitive changes (:pr:`395`) + * Fix transform stacking on multi-output aggregation (:pr:`394`) + * Fix list_primitives (:pr:`391`) + * Handle graphviz dependency (:pr:`389`, :pr:`396`, :pr:`398`) + * Testing updates (:pr:`402`, :pr:`417`, :pr:`433`) + * Documentation updates (:pr:`400`, :pr:`409`, :pr:`415`, :pr:`417`, :pr:`420`, :pr:`421`, :pr:`422`, :pr:`431`) + + + Thanks to the following people for contributing to this release: :user:`CharlesBradshaw`, :user:`csala`, :user:`floscha`, :user:`gsheni`, :user:`jxwolstenholme`, :user:`kmax12`, :user:`RogerTangos`, :user:`rwedge` + **v0.6.0** Jan 30, 2018 * Primitive refactor (:pr:`364`) * Mean ignore NaNs (:pr:`379`) diff --git a/featuretools/__init__.py b/featuretools/__init__.py index ceda771c71..5bd55a40ab 100644 --- a/featuretools/__init__.py +++ b/featuretools/__init__.py @@ -15,4 +15,4 @@ from . import feature_base from .feature_base import AggregationFeature, DirectFeature, Feature, FeatureBase, IdentityFeature, TransformFeature -__version__ = '0.6.0' +__version__ = '0.6.1' diff --git a/setup.py b/setup.py index 197cb07aa9..e7155f938d 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def finalize_options(self): setup( name='featuretools', - version='0.6.0', + version='0.6.1', packages=find_packages(), description='a framework for automated feature engineering', url='http://featuretools.com',