Skip to content

Commit

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

* add :user: external link to sphinx docs

* update changelog
  • Loading branch information
rwedge authored Dec 17, 2018
1 parent d0ebff1 commit 1a92e3f
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
16 changes: 16 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@

Changelog
---------
**v0.5.0** Dec 17, 2018
* Add specific error for duplicate additional/copy_variables in normalize_entity (:pr:`348`)
* Removed EntitySet._import_from_dataframe (:pr:`346`)
* Removed time_index_reduce parameter (:pr:`344`)
* Allow installation of additional primitives (:pr:`326`)
* Fix DatetimeIndex variable conversion (:pr:`342`)
* Update Sklearn DFS Transformer (:pr:`343`)
* Clean up entity creation logic (:pr:`336`)
* remove casting to list in transform feature calculation (:pr:`330`)
* Fix sklearn wrapper (:pr:`335`)
* Add readme to pypi
* Update conda docs after move to conda-forge (:pr:`334`)
* Add wrapper for scikit-learn Pipelines (:pr:`323`)
* Remove parse_date_cols parameter from EntitySet._import_from_dataframe (:pr:`333`)

Thanks to the following people for contributing to this release: :user:`bukosabino`, :user:`georgewambold`, :user:`gsheni`, :user:`jeff-hernandez`, :user:`kmax12`, and :user:`rwedge`.
**v0.4.1** Nov 29, 2018
* Resolve bug preventing using first column as index by default (:pr:`308`)
* Handle return type when creating features from Id variables (:pr:`318`)
Expand Down
3 changes: 2 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,8 @@

extlinks = {
'issue': ('https://github.com/featuretools/featuretools/issues/%s', 'GH#'),
'pr': ('https://github.com/featuretools/featuretools/pull/%s', 'GH#')
'pr': ('https://github.com/featuretools/featuretools/pull/%s', 'GH#'),
'user': ('https://github.com/%s', '@')
}


Expand Down
2 changes: 1 addition & 1 deletion featuretools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
import featuretools.demo
import featuretools.wrappers

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

setup(
name='featuretools',
version='0.4.1',
version='0.5.0',
packages=find_packages(),
description='a framework for automated feature engineering',
url='http://featuretools.com',
Expand Down

0 comments on commit 1a92e3f

Please sign in to comment.