From cff835570011e4623dadc7a69e17d1a598938487 Mon Sep 17 00:00:00 2001 From: Janis Klaise Date: Fri, 18 Mar 2022 15:17:43 +0000 Subject: [PATCH] v0.6.5 --- CHANGELOG.md | 20 ++++++++++++++++++-- CITATION.cff | 4 ++-- alibi/version.py | 2 +- 3 files changed, 21 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f7beb52e..3765a35da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ # Change Log -## [v0.6.4](https://github.com/SeldonIO/alibi/tree/v0.6.4) (2021-01-28) +## [v0.6.5](https://github.com/SeldonIO/alibi/tree/v0.6.4) (2022-03-18) +[Full Changelog](https://github.com/SeldonIO/alibi/compare/v0.6.4...v0.6.5) + +This is a patch release to correct a regression in `CounterfactualProto` introduced in `v0.6.3`. + +### Added +- Added a [Frequently Asked Questions](https://docs.seldon.io/projects/alibi/en/latest/overview/faq.html) page to the docs. + +### Fixed +- Fix a bug introduced in `v0.6.3` which prevented `CounterfactualProto` working with categorical features ([#612](https://github.com/SeldonIO/alibi/pull/612)). +- Fix an issue with the `LanguageModelSampler` where it would sometimes sample punctuation ([#585](https://github.com/SeldonIO/alibi/pull/585)). + +### Development +- The maximum `tensorflow` version has been bumped from 2.7 to 2.8 ([#588](https://github.com/SeldonIO/alibi/pull/588)). + + +## [v0.6.4](https://github.com/SeldonIO/alibi/tree/v0.6.4) (2022-02-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`. @@ -11,7 +27,7 @@ This is a patch release to correct a regression in `AnchorImage` introduced in ` ### 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) +## [v0.6.3](https://github.com/SeldonIO/alibi/tree/v0.6.3) (2022-01-18) [Full Changelog](https://github.com/SeldonIO/alibi/compare/v0.6.2...v0.6.3) ### Added diff --git a/CITATION.cff b/CITATION.cff index 96151cb37..278d41ae0 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.4 -date-released: 2022-01-28 +version: 0.6.5 +date-released: 2022-03-18 url: "https://github.com/SeldonIO/alibi" preferred-citation: type: article diff --git a/alibi/version.py b/alibi/version.py index b2c86984c..917e5a871 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.5dev' +__version__ = '0.6.5'