diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 95ff8e11..4d0399b0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,16 @@ +2024.1 (2024-02-10) +------------------- + +Updated hooks +~~~~~~~~~~~~~ + +* Fix hook for ``osgeo``, to include proj data files. (`#693 + `_) +* Update the hook for ``sklearn.neighbors`` to account for removed hidden + import ``neighbors._typedef`` (`#698 + `_) + + 2024.0 (2024-01-18) ------------------- diff --git a/news/693.update.rst b/news/693.update.rst deleted file mode 100644 index 5ccc1afa..00000000 --- a/news/693.update.rst +++ /dev/null @@ -1 +0,0 @@ - Fix hook for ``osgeo``, to include proj data files. diff --git a/news/698.update.rst b/news/698.update.rst deleted file mode 100755 index a234f80e..00000000 --- a/news/698.update.rst +++ /dev/null @@ -1 +0,0 @@ -Update the hook for ``sklearn.neighbors`` to account for removed hidden import ``neighbors._typedef`` \ No newline at end of file diff --git a/src/_pyinstaller_hooks_contrib/__init__.py b/src/_pyinstaller_hooks_contrib/__init__.py index ba94e87d..c8d0b69b 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.1' +__version__ = '2024.2' __maintainer__ = 'Legorooj, bwoodsend' __uri__ = 'https://github.com/pyinstaller/pyinstaller-hooks-contrib'