Skip to content

Commit b38dcfb

Browse files
v0.10.0 (#1209)
1 parent c86d9ef commit b38dcfb

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

docs/source/release_notes.rst

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,24 @@
22

33
Release Notes
44
-------------
5-
Future Release
6-
==============
5+
.. Future Release
6+
==============
77
* Enhancements
8-
* Allow frequency inference on temporal (Datetime, Timedelta) columns of Woodwork DataFrame (:pr:`1202`)
9-
* Update ``describe_dict`` to compute ``top_values`` for double columns that contain only integer values (:pr:`1206`)
108
* Fixes
119
* Changes
12-
* Return histogram bins as a list of floats instead of a ``pandas.Interval`` object (:pr:`1207`)
1310
* Documentation Changes
1411
* Testing Changes
1512
13+
.. Thanks to the following people for contributing to this release:
14+
15+
v0.10.0 Nov 30, 2020
16+
====================
17+
* Enhancements
18+
* Allow frequency inference on temporal (Datetime, Timedelta) columns of Woodwork DataFrame (:pr:`1202`)
19+
* Update ``describe_dict`` to compute ``top_values`` for double columns that contain only integer values (:pr:`1206`)
20+
* Changes
21+
* Return histogram bins as a list of floats instead of a ``pandas.Interval`` object (:pr:`1207`)
22+
1623
Thanks to the following people for contributing to this release:
1724
:user:`tamargrey`, :user:`thehomebrewnerd`
1825

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.9.1',
19+
version='0.10.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.9.1"
5+
assert __version__ == "0.10.0"

woodwork/version.py

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

0 commit comments

Comments
 (0)