Skip to content

Commit

Permalink
v0.6.1 (#436)
Browse files Browse the repository at this point in the history
* bump version number

* update changelog
  • Loading branch information
rwedge authored Feb 15, 2019
1 parent 15b7dae commit 16c04fe
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
28 changes: 28 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`)
Expand Down
2 changes: 1 addition & 1 deletion featuretools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 16c04fe

Please sign in to comment.