diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f39d1570d..95ff8e118 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,34 @@ +2024.0 (2024-01-18) +------------------- + +New hooks +~~~~~~~~~ + +* Add hook for ``cel-python``. (`#687 + `_) +* Add hook for ``eth_keys`` that collects package metadata for + ``eth-keys >= 0.5.0``. (`#688 + `_) +* Add hook for ``fairscale`` to collect its source .py files for + TorchScript/JIT. (`#692 + `_) +* Add hook for ``pygwalker`` that collects data files from the package. (`#690 + `_) +* Add hook for ``PyTaskbar`` (`#684 + `_) + + +Updated hooks +~~~~~~~~~~~~~ + +* Collect package metadata for ``eth-hash`` (fixes ``PackageNotFoundError``). + (`#688 + `_) +* Update ``pypylon`` hook for compatibility with PyInstaller 6.0 and later. + (`#691 + `_) + + 2023.12 (2024-01-03) -------------------- diff --git a/news/684.new.rst b/news/684.new.rst deleted file mode 100644 index 5168d5755..000000000 --- a/news/684.new.rst +++ /dev/null @@ -1 +0,0 @@ -Add hook for ``PyTaskbar`` diff --git a/news/687.new.rst b/news/687.new.rst deleted file mode 100644 index d3361b1dd..000000000 --- a/news/687.new.rst +++ /dev/null @@ -1 +0,0 @@ -Add hook for ``cel-python``. diff --git a/news/688.new.rst b/news/688.new.rst deleted file mode 100644 index 127e3a84e..000000000 --- a/news/688.new.rst +++ /dev/null @@ -1,2 +0,0 @@ -Add hook for ``eth_keys`` that collects package metadata for -``eth-keys >= 0.5.0``. diff --git a/news/688.update.rst b/news/688.update.rst deleted file mode 100644 index 2eba65757..000000000 --- a/news/688.update.rst +++ /dev/null @@ -1 +0,0 @@ -Collect package metadata for ``eth-hash`` (fixes ``PackageNotFoundError``). diff --git a/news/690.new.rst b/news/690.new.rst deleted file mode 100644 index 0317ece3f..000000000 --- a/news/690.new.rst +++ /dev/null @@ -1 +0,0 @@ -Add hook for ``pygwalker`` that collects data files from the package. \ No newline at end of file diff --git a/news/691.update.rst b/news/691.update.rst deleted file mode 100644 index 447e9803d..000000000 --- a/news/691.update.rst +++ /dev/null @@ -1 +0,0 @@ -Update ``pypylon`` hook for compatibility with PyInstaller 6.0 and later. diff --git a/news/692.new.rst b/news/692.new.rst deleted file mode 100644 index d43d032a2..000000000 --- a/news/692.new.rst +++ /dev/null @@ -1,2 +0,0 @@ -Add hook for ``fairscale`` to collect its source .py files for -TorchScript/JIT. diff --git a/src/_pyinstaller_hooks_contrib/__init__.py b/src/_pyinstaller_hooks_contrib/__init__.py index e3a94e566..ba94e87df 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.0' +__version__ = '2024.1' __maintainer__ = 'Legorooj, bwoodsend' __uri__ = 'https://github.com/pyinstaller/pyinstaller-hooks-contrib'