diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4d0399b0a..7462c89cc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,29 @@ +2024.2 (2024-02-29) +------------------- + +New hooks +~~~~~~~~~ + +* Add a hook for ``iso639-lang``, to collect data files (`#707 + `_) +* Add hook for ``falcon``, which has hidden imports. (`#703 + `_) + + +Updated hooks +~~~~~~~~~~~~~ + +* Update ``pyqtgraph`` hook to use the helper for automatic Qt bindings + selection and exclusion from PyInstaller >= 6.5 (no-op with earlier + versions). This should help preventing multiple Qt bindings from + being collected into frozen application. (`#710 + `_) +* Update the exclude list for GUI frameworks in the ``IPython`` hook with + additional contemporary Qt bindings (``PySide2``, ``PySide6``, and + ``PyQt6``). (`#708 + `_) + + 2024.1 (2024-02-10) ------------------- diff --git a/news/703.new.rst b/news/703.new.rst deleted file mode 100644 index f437c2e70..000000000 --- a/news/703.new.rst +++ /dev/null @@ -1 +0,0 @@ -Add hook for ``falcon``, which has hidden imports. \ No newline at end of file diff --git a/news/707.new.rst b/news/707.new.rst deleted file mode 100644 index 9c70bc88c..000000000 --- a/news/707.new.rst +++ /dev/null @@ -1 +0,0 @@ -Add a hook for ``iso639-lang``, to collect data files \ No newline at end of file diff --git a/news/708.update.rst b/news/708.update.rst deleted file mode 100644 index 7391743c8..000000000 --- a/news/708.update.rst +++ /dev/null @@ -1,2 +0,0 @@ -Update the exclude list for GUI frameworks in the ``IPython`` hook with -additional contemporary Qt bindings (``PySide2``, ``PySide6``, and ``PyQt6``). diff --git a/news/710.update.rst b/news/710.update.rst deleted file mode 100644 index 206a5f12a..000000000 --- a/news/710.update.rst +++ /dev/null @@ -1,4 +0,0 @@ -Update ``pyqtgraph`` hook to use the helper for automatic Qt bindings -selection and exclusion from PyInstaller >= 6.5 (no-op with earlier -versions). This should help preventing multiple Qt bindings from -being collected into frozen application. diff --git a/src/_pyinstaller_hooks_contrib/__init__.py b/src/_pyinstaller_hooks_contrib/__init__.py index c8d0b69be..43ae303a0 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.2' +__version__ = '2024.3' __maintainer__ = 'Legorooj, bwoodsend' __uri__ = 'https://github.com/pyinstaller/pyinstaller-hooks-contrib'