From 2ce748d5e50c8263a01715b2fcde495fcf46afbd Mon Sep 17 00:00:00 2001 From: Luis Pedro Coelho Date: Wed, 17 Jul 2024 13:35:29 -0400 Subject: [PATCH] RLS Version 1.4.18 - Fix bug in Haralick features and NumPy 2 (thanks to @Czaki, see [#150](https://github.com/luispedro/mahotas/pull/150)) --- ChangeLog | 3 +++ README.md | 4 ++++ docs/source/history.rst | 5 +++++ mahotas/mahotas_version.py | 2 +- 4 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6fa5b3d5..e4aa5a97 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +Version 1.4.18 2024-07-18 by luispedro + * Fix bug in Haralick features and NumPy 2 (thanks to @Czaki, see #150) + Version 1.4.17 2024-07-13 by luispedro * mahotas: fix bug triggered on Windows diff --git a/README.md b/README.md index 0aa54af7..1220e1d9 100644 --- a/README.md +++ b/README.md @@ -235,6 +235,10 @@ questions. ## Recent Changes +### Version 1.4.18 (Jul 18 2024) + +- Fix bug in Haralick features and NumPy 2 (thanks to @Czaki, see [#150](https://github.com/luispedro/mahotas/pull/150)) + ### Version 1.4.17 (Jul 13 2024) - Fix bug that stopped mahotas from working on Windows diff --git a/docs/source/history.rst b/docs/source/history.rst index b4b1e3cc..9c6af3fb 100644 --- a/docs/source/history.rst +++ b/docs/source/history.rst @@ -2,6 +2,11 @@ History ======= +Version 1.4.18 (Jul 18 2024) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Fix bug in Haralick features and NumPy 2 (thanks to @Czaki, see `#150 `__) + Version 1.4.17 (Jul 13 2024) ~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Fixes for Windows (actually a bona fides bug that was only triggered in a very specific case) diff --git a/mahotas/mahotas_version.py b/mahotas/mahotas_version.py index 2dda9b36..f6c9fc7d 100644 --- a/mahotas/mahotas_version.py +++ b/mahotas/mahotas_version.py @@ -1 +1 @@ -__version__ = '1.4.17' +__version__ = '1.4.18'