Skip to content

Commit fec592f

Browse files
authored
v0.0.11 (#704)
1 parent 42d1f35 commit fec592f

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

docs/source/release_notes.rst

+10-3
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,20 @@
22

33
Release Notes
44
-------------
5-
**Future Release**
5+
.. **Future Release**
66
* Enhancements
77
* Fixes
8+
* Changes
9+
* Documentation Changes
10+
* Testing Changes
11+
12+
.. Thanks to the following people for contributing to this release:
13+
14+
**v0.0.11 March 15, 2021**
815
* Changes
916
* Restrict Koalas version to ``<1.7.0`` due to breaking changes (:pr:`674`)
10-
* Include unique columns in mutual information calculations (:pr:`687`)
11-
* Add parameter to include index column in mutual information calculations (:pr:`692`)
17+
* Include unique columns in mutual information calculations (:pr:`687`)
18+
* Add parameter to include index column in mutual information calculations (:pr:`692`)
1219
* Documentation Changes
1320
* Update to remove warning message from statistical insights guide (:pr:`690`)
1421
* Testing Changes

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
author='Alteryx, Inc.',
1616
author_email='[email protected]',
1717
license='BSD 3-clause',
18-
version='0.0.10',
18+
version='0.0.11',
1919
description='a two-dimensional data object with labeled axes and typing information',
2020
url='https://github.com/alteryx/woodwork/',
2121
classifiers=[

woodwork/tests/test_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version():
5-
assert __version__ == "0.0.10"
5+
assert __version__ == "0.0.11"

woodwork/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.10"
1+
__version__ = "0.0.11"

0 commit comments

Comments
 (0)