diff --git a/ChangeLog b/ChangeLog index d542190c..5d0a869a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,6 @@ -Unreleased +Version 1.4.13 2022-06-28 by luispedro * Fix freeimage testing (and make freeimage loading more robust, see #129) + * Add GIL fixed (which triggered crashes in newer NumPy versions) Version 1.4.12 2021-10-14 by luispedro * Update for newer NumPy diff --git a/README.md b/README.md index 035218ed..257eda99 100644 --- a/README.md +++ b/README.md @@ -219,6 +219,11 @@ questions. ## Recent Changes +### Version 1.4.13 (Jun 28 2022) + +- Fix freeimage testing (and make freeimage loading more robust, see #129) +- Add GIL fixed (which triggered crashes in newer NumPy versions) + ### Version 1.4.12 (Oct 14 2021) - Update to newer NumPy diff --git a/docs/source/history.rst b/docs/source/history.rst index 685eba3a..54499b7e 100644 --- a/docs/source/history.rst +++ b/docs/source/history.rst @@ -2,6 +2,12 @@ History ======= +Version 1.4.13 (Jun 28 2022) +~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Fix freeimage testing (and make freeimage loading more robust, see #129) +- Add GIL fixed (which triggered crashes in newer NumPy versions) + Version 1.4.12 (Oct 14 2021) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/mahotas/mahotas_version.py b/mahotas/mahotas_version.py index 14895e4f..133086d0 100644 --- a/mahotas/mahotas_version.py +++ b/mahotas/mahotas_version.py @@ -1 +1 @@ -__version__ = '1.4.12' +__version__ = '1.4.13'