Skip to content

Commit d3295e9

Browse files
v0.8.0 (#1136)
* v0.8.0
1 parent 0da1f34 commit d3295e9

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

docs/source/release_notes.rst

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,17 @@
22

33
Release Notes
44
-------------
5-
Future Release
6-
===============
5+
v0.8.0 Sep 9, 2021
6+
==================
77
* Enhancements
88
* Add support for automatically inferring the ``URL`` and ``IPAddress`` logical types (:pr:`1122`, :pr:`1124`)
99
* Add ``get_valid_mi_columns`` method to list columns that have valid logical types for mutual information calculation (:pr:`1129`)
1010
* Add attribute to check if column has a nullable logical type (:pr:`1127`)
11-
* Fixes
1211
* Changes
1312
* Update ``get_invalid_schema_message`` to improve performance (:pr:`1132`)
1413
* Documentation Changes
1514
* Fix typo in the "Get Started" documentation (:pr:`1126`)
1615
* Clean up the logical types guide (:pr:`1134`)
17-
* Testing Changes
1816

1917
Thanks to the following people for contributing to this release:
2018
:user:`ajaypallekonda`, :user:`davesque`, :user:`jeff-hernandez`, :user:`thehomebrewnerd`

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
author='Alteryx, Inc.',
1717
author_email='[email protected]',
1818
license='BSD 3-clause',
19-
version='0.7.1',
19+
version='0.8.0',
2020
description='a two-dimensional data object with labeled axes and typing information',
2121
url='https://github.com/alteryx/woodwork/',
2222
classifiers=[

woodwork/tests/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version():
5-
assert __version__ == "0.7.1"
5+
assert __version__ == "0.8.0"

woodwork/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.1"
1+
__version__ = "0.8.0"

0 commit comments

Comments
 (0)