Skip to content

Commit ac55b66

Browse files
v0.31.0 (#1864)
* v0.31.0 * try to fix release notes update * action fix * update ref * update env var
1 parent 27edbcd commit ac55b66

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

.github/workflows/release_notes_updated.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,15 @@ jobs:
1616
REF: ${{ github.event.pull_request.head.ref }}
1717
run: |
1818
from re import compile
19+
import os
1920
main = '^main$'
2021
release = '^release_v\d+\.\d+\.\d+$'
2122
backport = '^backport_v\d+\.\d+\.\d+$'
2223
dep_update = '^latest-dep-update-[a-f0-9]{7}$'
2324
min_dep_update = '^min-dep-update-[a-f0-9]{7}$'
2425
regex = main, release, backport, dep_update, min_dep_update
2526
patterns = list(map(compile, regex))
26-
ref = "$REF"
27+
ref = os.environ["REF"]
2728
is_dev = not any(pattern.match(ref) for pattern in patterns)
2829
print('::set-output name=is_dev::' + str(is_dev))
2930
- if: ${{ steps.branch.outputs.is_dev == 'True' }}

docs/source/release_notes.rst

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,24 @@
33
Release Notes
44
-------------
55

6-
Future Release
7-
==============
6+
.. Future Release
7+
==============
88
* Enhancements
9-
* Add support for Python 3.12 :pr:`1855`
109
* Fixes
1110
* Changes
12-
* Drop support for using Woodwork with Dask or Pyspark dataframes :pr:`1857`
13-
* Use ``filter`` arg in call to ``tarfile.extractall`` to safely deserialize DataFrames :pr:`1862`
1411
* Documentation Changes
1512
* Testing Changes
1613
14+
.. Thanks to the following people for contributing to this release:
15+
16+
v0.31.0 May 13, 2024
17+
====================
18+
* Enhancements
19+
* Add support for Python 3.12 :pr:`1855`
20+
* Changes
21+
* Drop support for using Woodwork with Dask or Pyspark dataframes :pr:`1857`
22+
* Use ``filter`` arg in call to ``tarfile.extractall`` to safely deserialize DataFrames :pr:`1862`
23+
1724
Thanks to the following people for contributing to this release:
1825
:user:`thehomebrewnerd`
1926

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.30.0"
5+
assert __version__ == "0.31.0"

woodwork/version.py

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

0 commit comments

Comments
 (0)