Skip to content

Commit f047187

Browse files
authored
v0.0.9 (#551)
* update version * update release notes
1 parent aa3899a commit f047187

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

docs/source/release_notes.rst

+11-4
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,31 @@
22

33
Release Notes
44
-------------
5-
**Future Release**
5+
.. **Future Release**
6+
* Enhancements
7+
* 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.9 February 5, 2021**
615
* Enhancements
716
* Add Python 3.9 support without Koalas testing (:pr:`511`)
817
* Add ``get_valid_mi_types`` function to list LogicalTypes valid for mutual information calculation (:pr:`517`)
918
* Fixes
1019
* Handle missing values in Datetime columns when calculating mutual information (:pr:`516`)
1120
* Support numpy 1.20.0 by restricting version for koalas and changing serialization error message (:pr:`532`)
1221
* Move Koalas option setting to DataTable init instead of import (:pr:`543`)
13-
* Changes
1422
* Documentation Changes
1523
* Add Alteryx OSS Twitter link (:pr:`519`)
1624
* Update logo and add new favicon (:pr:`521`)
1725
* Multiple improvements to Getting Started page and guides (:pr:`527`)
1826
* Clean up API Reference and docstrings (:pr:`536`)
1927
* Added Open Graph for Twitter and Facebook (:pr:`544`)
20-
* Testing Changes
2128

22-
Thanks to the following people for contributing to this release:
29+
Thanks to the following people for contributing to this release:
2330
:user:`gsheni`, :user:`tamargrey`, :user:`thehomebrewnerd`
2431

2532
**v0.0.8 January 25, 2021**

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.8',
18+
version='0.0.9',
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.8"
5+
assert __version__ == "0.0.9"

woodwork/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.8"
1+
__version__ = "0.0.9"

0 commit comments

Comments
 (0)