Skip to content

Commit 5f9ac56

Browse files
v0.11.0 (#1220)
* v0.11.0 * v0.11.0 * update release.md
1 parent efaf527 commit 5f9ac56

File tree

5 files changed

+18
-10
lines changed

5 files changed

+18
-10
lines changed

docs/source/release_notes.rst

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,27 @@
22

33
Release Notes
44
-------------
5-
Future Release
6-
==============
5+
.. Future Release
6+
==============
77
* Enhancements
8-
* Add type inference for natural language (:pr:`1210`)
98
* Fixes
109
* Changes
11-
* Make public method ``get_subset_schema`` (:pr:`1218`)
1210
* Documentation Changes
1311
* Testing Changes
1412
13+
.. Thanks to the following people for contributing to this release:
14+
15+
v0.11.0 Dec 22, 2021
16+
====================
17+
* Enhancements
18+
* Add type inference for natural language (:pr:`1210`)
19+
* Changes
20+
* Make public method ``get_subset_schema`` (:pr:`1218`)
21+
1522
Thanks to the following people for contributing to this release:
16-
:user:`jeff-hernandez`, :user:`tuethan1999`
23+
:user:`jeff-hernandez`, :user:`thehomebrewnerd`, :user:`tuethan1999`
1724

18-
v0.10.0 Nov 30, 2020
25+
v0.10.0 Nov 30, 2021
1926
====================
2027
* Enhancements
2128
* Allow frequency inference on temporal (Datetime, Timedelta) columns of Woodwork DataFrame (:pr:`1202`)

release.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ If you'd like to create a development release, which won't be deployed to pypi a
5252
.. Thanks to the following people for contributing to this release:
5353
```
5454
55-
An example can be found here: <https://github.com/alteryx/woodwork/pull/158>
55+
#### Create Release PR
56+
A [release pr](https://github.com/alteryx/woodwork/pull/158) should have the version number as the title and the release notes for that release as the PR body text. The contributors list is not necessary. The special sphinx docs syntax (:pr:\`547\`) needs to be changed to github link syntax (#547).
5657
5758
Checklist before merging:
5859

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.10.0',
19+
version='0.11.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.10.0"
5+
assert __version__ == "0.11.0"

woodwork/version.py

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

0 commit comments

Comments
 (0)