From da1b65770c2f111b2e65950096dc2a0011d15050 Mon Sep 17 00:00:00 2001 From: Luis Pedro Coelho Date: Sun, 2 Oct 2016 14:22:42 +0200 Subject: [PATCH] BLD Release 1.4.2 Bugfix release. Full ChangeLog: * Fix `resize_to` return exactly the requested size * Fix hard crash when computing texture on arrays with negative values (issue #72) * Added `distance` argument to haralick features (pull request #76, by Guillaume Lemaitre) --- ChangeLog | 2 +- README.md | 7 +++++++ docs/source/history.rst | 10 ++++++++++ mahotas/mahotas_version.py | 2 +- 4 files changed, 19 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7ba297d0..262adcca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -Version 1.4.1+ +Version 1.4.2 2016-10-02 by luispedro * Fix `resize_to` return exactly the requested size * Fix hard crash when computing texture on arrays with negative values (issue #72) diff --git a/README.md b/README.md index b6e66ff2..2bc253ec 100644 --- a/README.md +++ b/README.md @@ -218,6 +218,13 @@ questions. ## Recent Changes +### Version 1.4.2 (Oct 2 2016) +- Fix `resize\_to` return exactly the requested size +- Fix hard crash when computing texture on arrays with negative values + (issue #72) +- Added `distance` argument to haralick features (pull request #76, by + Guillaume Lemaitre) + ### Version 1.4.1 (Dec 20 2015) - Add `filter\_labeled` function diff --git a/docs/source/history.rst b/docs/source/history.rst index 2c1e6de1..3ef1ad58 100644 --- a/docs/source/history.rst +++ b/docs/source/history.rst @@ -2,6 +2,16 @@ History ======= +Version 1.4.2 (Oct 2 2016) +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +- Fix ``resize\_to`` return exactly the requested size +- Fix hard crash when computing texture on arrays with negative values + (issue #72) +- Added ``distance`` argument to haralick features (pull request #76, by + Guillaume Lemaitre) + + Version 1.4.1 (Dec 20 2015) ~~~~~~~~~~~~~~~~~~~~~~~~~~~ - Add filter_labeled function diff --git a/mahotas/mahotas_version.py b/mahotas/mahotas_version.py index 7abc1b41..98d186be 100644 --- a/mahotas/mahotas_version.py +++ b/mahotas/mahotas_version.py @@ -1 +1 @@ -__version__ = '1.4.1+git' +__version__ = '1.4.2'