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.23.0 #1292

Merged
merged 3 commits into from Dec 31, 2020
Merged

v0.23.0 #1292

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: 10 additions & 2 deletions docs/source/release_notes.rst
Expand Up @@ -2,8 +2,16 @@

Release Notes
-------------
**Future Release**
.. **Future Release**
* Enhancements
* Fixes
* Changes
* Documentation Changes
* Testing Changes

.. Thanks to the following people for contributing to this release:

**v0.23.0 Dec 31, 2020**
* Fixes
* Fix logic for inferring variable type from unusual dtype (:pr:`1273`)
* Allow passing entities without relationships to `calculate_feature_matrix` (:pr:`1290`)
Expand All @@ -23,7 +31,7 @@ Release Notes
**Breaking Changes**

* ``Entity.query_by_values`` has been removed and replaced by ``EntitySet.query_by_values`` with an
added ``entity_id`` parameter to specify which entity in the entityset should be used for the query.
added ``entity_id`` parameter to specify which entity in the entityset should be used for the query.

**v0.22.0 Nov 30, 2020**
* 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.22.0"
assert __version__ == "0.23.0"
2 changes: 1 addition & 1 deletion featuretools/version.py
@@ -1 +1 @@
__version__ = '0.22.0'
__version__ = '0.23.0'
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -19,7 +19,7 @@

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