Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.13.0 #830

Merged
merged 4 commits into from Nov 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 7 additions & 5 deletions docs/source/changelog.rst
Expand Up @@ -2,7 +2,7 @@

Changelog
---------
**Future Release**
**v0.13.0 Nov 30, 2019**
* Enhancements
* Added GitHub Action to auto upload releases to PyPI (:pr:`816`)
* Fixes
Expand All @@ -23,13 +23,15 @@ Changelog
* Remove get_values() from test_es.py to remove warnings (:pr:`820`)

Thanks to the following people for contributing to this release:
:user:`rwedge`, :user:`systemshift`, :user:`frances-h`, :user:`jeff-hernandez`
:user:`frances-h`, :user:`jeff-hernandez`, :user:`rwedge`, :user:`systemshift`

**Breaking Changes**
* The libraries used for downloading or uploading from S3 or URLs are now
optional and will no longer be installed by default. To use this functionality
they will need to be installed separately.

* The libraries used for downloading or uploading from S3 or URLs are now
optional and will no longer be installed by default. To use this
functionality they will need to be installed separately.
* The fix to how the Diff primitive is calculated may slow down the overall
calculation time of feature lists that use this primitive.

**v0.12.0 Oct 31, 2019**
* Enhancements
Expand Down
2 changes: 1 addition & 1 deletion featuretools/tests/test_version.py
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.12.0"
assert __version__ == "0.13.0"
2 changes: 1 addition & 1 deletion featuretools/version.py
@@ -1 +1 @@
__version__ = '0.12.0'
__version__ = '0.13.0'
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -17,7 +17,7 @@

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