diff --git a/ChangeLog b/ChangeLog index 927500c7..6fa5b3d5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +Version 1.4.17 2024-07-13 by luispedro + * mahotas: fix bug triggered on Windows + Version 1.4.16 2024-07-03 by luispedro * io: Add deprecated warning for freeimage * mahotas: update for NumPy 2 diff --git a/README.md b/README.md index ffce2d99..0aa54af7 100644 --- a/README.md +++ b/README.md @@ -235,6 +235,10 @@ questions. ## Recent Changes +### Version 1.4.17 (Jul 13 2024) + +- Fix bug that stopped mahotas from working on Windows + ### Version 1.4.16 (Jul 3 2024) - update for NumPy 2 diff --git a/docs/source/history.rst b/docs/source/history.rst index 5d9c0c84..b4b1e3cc 100644 --- a/docs/source/history.rst +++ b/docs/source/history.rst @@ -2,6 +2,10 @@ History ======= +Version 1.4.17 (Jul 13 2024) +~~~~~~~~~~~~~~~~~~~~~~~~~~~ +- Fixes for Windows (actually a bona fides bug that was only triggered in a very specific case) + Version 1.4.16 (Jul 3 2024) ~~~~~~~~~~~~~~~~~~~~~~~~~~~ - update for NumPy 2 diff --git a/mahotas/mahotas_version.py b/mahotas/mahotas_version.py index 5d789751..2dda9b36 100644 --- a/mahotas/mahotas_version.py +++ b/mahotas/mahotas_version.py @@ -1 +1 @@ -__version__ = '1.4.16' +__version__ = '1.4.17'