From 1ef9d078637bde9c919bbc5016af6e576a675065 Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 26 May 2022 17:42:10 +0000 Subject: [PATCH] Release v2022.6 --- CHANGELOG.rst | 14 ++++++++++++++ news/432.update.rst | 2 -- news/435.update.rst | 2 -- src/_pyinstaller_hooks_contrib/__init__.py | 2 +- 4 files changed, 15 insertions(+), 5 deletions(-) delete mode 100644 news/432.update.rst delete mode 100644 news/435.update.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b0b9ffaf..5599c186 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,4 +1,18 @@ +2022.6 (2022-05-26) +-------------------- + +Updated hooks +~~~~~~~~~~~~~ + +* Fix the filter function used with ``collect_submodules`` in the ``pylint`` + hook to properly exclude ``pylint.testutils``. (`#435 + `_) +* Update ``sounddevice`` and ``soundfile`` hooks for PyInstaller 5.1 + compatibility. (`#432 + `_) + + 2022.5 (2022-05-16) -------------------- diff --git a/news/432.update.rst b/news/432.update.rst deleted file mode 100644 index 89058da7..00000000 --- a/news/432.update.rst +++ /dev/null @@ -1,2 +0,0 @@ -Update ``sounddevice`` and ``soundfile`` hooks for PyInstaller 5.1 -compatibility. diff --git a/news/435.update.rst b/news/435.update.rst deleted file mode 100644 index 5eaaf498..00000000 --- a/news/435.update.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fix the filter function used with ``collect_submodules`` in the ``pylint`` -hook to properly exclude ``pylint.testutils``. diff --git a/src/_pyinstaller_hooks_contrib/__init__.py b/src/_pyinstaller_hooks_contrib/__init__.py index efe77226..874fd9b1 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__ = '2022.6' +__version__ = '2022.7' __maintainer__ = 'Legorooj, bwoodsend' __uri__ = 'https://github.com/pyinstaller/pyinstaller-hooks-contrib'