diff --git a/CHANGELOG.rst b/CHANGELOG.rst index dea778f4e..ba5d3c7c8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,14 @@ +2024.6 (2024-05-10) +------------------- + +New hooks +~~~~~~~~~ + +* Add hook for ``schwifty``. Requires ``schwifty >= 2024.5.1`` due to + issues with data search path in earlier versions. (`#742 + `_) + + 2024.5 (2024-04-23) ------------------- diff --git a/news/742.new.rst b/news/742.new.rst deleted file mode 100644 index 3192fcc0f..000000000 --- a/news/742.new.rst +++ /dev/null @@ -1,2 +0,0 @@ -Add hook for ``schwifty``. Requires ``schwifty >= 2024.5.1`` due to -issues with data search path in earlier versions. diff --git a/src/_pyinstaller_hooks_contrib/__init__.py b/src/_pyinstaller_hooks_contrib/__init__.py index b018df3bb..b82da6c8a 100644 --- a/src/_pyinstaller_hooks_contrib/__init__.py +++ b/src/_pyinstaller_hooks_contrib/__init__.py @@ -10,6 +10,6 @@ # SPDX-License-Identifier: GPL-2.0-or-later # ------------------------------------------------------------------ -__version__ = '2024.6' +__version__ = '2024.7' __maintainer__ = 'Legorooj, bwoodsend' __uri__ = 'https://github.com/pyinstaller/pyinstaller-hooks-contrib'