Skip to content

Commit

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

* update changelog

* fix documentation warning
  • Loading branch information
rwedge authored May 30, 2018
1 parent 70591f3 commit 729a087
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 7 deletions.
6 changes: 1 addition & 5 deletions docs/source/automated_feature_engineering/primitives.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,9 @@ In the example above, we use two types of primitives.

**Transform primitives:** These primitives take one or more variables from an entity as an input and output a new variable for that entity. They are applied to a single entity. E.g: ``"hour"``, ``"time_since_previous"``, ``"absolute"``.




.. Built in Primitives
.. *******************
For a DataFrame that lists and describes each built-in primitive in Featuretools, call ``ft.list_primitives()``.


.. ipython:: python
ft.list_primitives().head(5)
Expand Down
14 changes: 14 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

Changelog
---------
**v0.1.21** May 30, 2018
* Support Pandas 0.23.0 (:pr:`153`, :pr:`154`, :pr:`155`, :pr:`159`)
* No EntitySet required in loading/saving features (:pr:`141`)
* Use s3 demo csv with better column names (:pr:`139`)
* more reasonable start parameter (:pr:`149`)
* add issue template (:pr:`133`)
* Improve tests (:pr:`136`, :pr:`137`, :pr:`144`, :pr:`147`)
* Remove unused functions (:pr:`140`, :pr:`143`, :pr:`146`)
* Update documentation after recent changes / removals (:pr:`157`)
* Rename demo retail csv file (:pr:`148`)
* Add names for binary (:pr:`142`)
* EntitySet repr to use get_name rather than id (:pr:`134`)
* Ensure config dir is writable (:pr:`135`)

**v0.1.20** Apr 13, 2018
* Primitives as strings in DFS parameters (:pr:`129`)
* Integer time index bugfixes (:pr:`128`)
Expand Down
2 changes: 1 addition & 1 deletion featuretools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
from .utils.time_utils import *
import featuretools.demo

__version__ = '0.1.20'
__version__ = '0.1.21'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def finalize_options(self):

setup(
name='featuretools',
version='0.1.20',
version='0.1.21',
packages=find_packages(),
package_data={'featuretools': ['config.yaml']},
description='a framework for automated feature engineering',
Expand Down

0 comments on commit 729a087

Please sign in to comment.