From 1a92e3f43b0cf64072f605d847fbba13a25a4164 Mon Sep 17 00:00:00 2001 From: Roy Wedge Date: Mon, 17 Dec 2018 18:28:47 -0500 Subject: [PATCH] v0.5.0 (#351) * bump version number * add :user: external link to sphinx docs * update changelog --- docs/source/changelog.rst | 16 ++++++++++++++++ docs/source/conf.py | 3 ++- featuretools/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 6b892da03a..0de6fbafe4 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -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`) diff --git a/docs/source/conf.py b/docs/source/conf.py index ff620eecfd..2d2c56573d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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', '@') } diff --git a/featuretools/__init__.py b/featuretools/__init__.py index 85b717c408..aed05b3799 100644 --- a/featuretools/__init__.py +++ b/featuretools/__init__.py @@ -13,4 +13,4 @@ import featuretools.demo import featuretools.wrappers -__version__ = '0.4.1' +__version__ = '0.5.0' diff --git a/setup.py b/setup.py index d9df52acca..e3bed306bc 100644 --- a/setup.py +++ b/setup.py @@ -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',