From 7868f7647e30a3783e1dc8ae939bee317a6504c5 Mon Sep 17 00:00:00 2001 From: Janis Klaise Date: Fri, 28 Jan 2022 17:51:53 +0000 Subject: [PATCH] v0.6.4 --- CHANGELOG.md | 11 +++++++++++ CITATION.cff | 4 ++-- alibi/version.py | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c06d415e..7f7beb52e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Change Log +## [v0.6.4](https://github.com/SeldonIO/alibi/tree/v0.6.4) (2021-01-28) +[Full Changelog](https://github.com/SeldonIO/alibi/compare/v0.6.3...v0.6.4) + +This is a patch release to correct a regression in `AnchorImage` introduced in `v0.6.3`. + +### Fixed +- Fix a bug introduced in `v0.6.3` where `AnchorImage` would ignore user `segmentation_kwargs` ([#581](https://github.com/SeldonIO/alibi/pull/581)). + +### Development +- The maximum versions of `Pillow` and `scikit-image` have been bumped to 9.x and 0.19.x respectively. + ## [v0.6.3](https://github.com/SeldonIO/alibi/tree/v0.6.3) (2021-01-18) [Full Changelog](https://github.com/SeldonIO/alibi/compare/v0.6.2...v0.6.3) diff --git a/CITATION.cff b/CITATION.cff index 3afb0c89d..96151cb37 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -17,8 +17,8 @@ authors: given-names: "Ashley" orcid: "https://orcid.org/0000-0001-8971-7224" title: "Alibi Explain: Algorithms for Explaining Machine Learning Models" -version: 0.6.3 -date-released: 2022-01-18 +version: 0.6.4 +date-released: 2022-01-28 url: "https://github.com/SeldonIO/alibi" preferred-citation: type: article diff --git a/alibi/version.py b/alibi/version.py index 1fb70b18d..106a10a15 100644 --- a/alibi/version.py +++ b/alibi/version.py @@ -2,4 +2,4 @@ # 1) we don't load dependencies by storing it in __init__.py # 2) we can import it in setup.py for the same reason # 3) we can import it into your module module -__version__ = '0.6.4dev' +__version__ = '0.6.4'