Skip to content

Commit

Permalink
v0.31.0 (#1864)
Browse files Browse the repository at this point in the history
* v0.31.0

* try to fix release notes update

* action fix

* update ref

* update env var
  • Loading branch information
thehomebrewnerd authored May 14, 2024
1 parent 27edbcd commit ac55b66
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release_notes_updated.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@ jobs:
REF: ${{ github.event.pull_request.head.ref }}
run: |
from re import compile
import os
main = '^main$'
release = '^release_v\d+\.\d+\.\d+$'
backport = '^backport_v\d+\.\d+\.\d+$'
dep_update = '^latest-dep-update-[a-f0-9]{7}$'
min_dep_update = '^min-dep-update-[a-f0-9]{7}$'
regex = main, release, backport, dep_update, min_dep_update
patterns = list(map(compile, regex))
ref = "$REF"
ref = os.environ["REF"]
is_dev = not any(pattern.match(ref) for pattern in patterns)
print('::set-output name=is_dev::' + str(is_dev))
- if: ${{ steps.branch.outputs.is_dev == 'True' }}
Expand Down
17 changes: 12 additions & 5 deletions docs/source/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,24 @@
Release Notes
-------------

Future Release
==============
.. Future Release
==============
* Enhancements
* Add support for Python 3.12 :pr:`1855`
* Fixes
* Changes
* Drop support for using Woodwork with Dask or Pyspark dataframes :pr:`1857`
* Use ``filter`` arg in call to ``tarfile.extractall`` to safely deserialize DataFrames :pr:`1862`
* Documentation Changes
* Testing Changes
.. Thanks to the following people for contributing to this release:
v0.31.0 May 13, 2024
====================
* Enhancements
* Add support for Python 3.12 :pr:`1855`
* Changes
* Drop support for using Woodwork with Dask or Pyspark dataframes :pr:`1857`
* Use ``filter`` arg in call to ``tarfile.extractall`` to safely deserialize DataFrames :pr:`1862`

Thanks to the following people for contributing to this release:
:user:`thehomebrewnerd`

Expand Down
2 changes: 1 addition & 1 deletion woodwork/tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.30.0"
assert __version__ == "0.31.0"
2 changes: 1 addition & 1 deletion woodwork/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.30.0"
__version__ = "0.31.0"

0 comments on commit ac55b66

Please sign in to comment.