From 40f4121ce6df2e11451036f1edc2976c63fed1fe Mon Sep 17 00:00:00 2001 From: Ashley Scillitoe Date: Fri, 3 Mar 2023 18:03:40 +0000 Subject: [PATCH] v0.11.1 --- CHANGELOG.md | 9 +++------ CITATION.cff | 4 ++-- README.md | 4 ++-- alibi_detect/version.py | 2 +- 4 files changed, 8 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc8d80f93..415e58a63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,13 @@ # Change Log -## v0.12.0dev -[Full Changelog](https://github.com/SeldonIO/alibi-detect/compare/v0.11.1...master) - ## v0.11.1 [Full Changelog](https://github.com/SeldonIO/alibi-detect/compare/v0.11.0...v0.11.1) ### Fixed -- Fixed two bugs with the saving/loading of drift detector `preprocess_fn`'s [#752](https://github.com/SeldonIO/alibi-detect/pull/752)): - - When `preprocess_fn` was a custom Python function wrapped in a partial, included kwarg's were not serialized. This has now been fixed. - - When saving drift detector `preprocess_fn`'s, for kwargs saved to `.dill` files, the filenames are now prepended with the kwarg name, so that files aren't overwritten if multiple kwargs are saved to `.dill`. +- Fixed two bugs with the saving/loading of drift detector `preprocess_fn`'s ([#752](https://github.com/SeldonIO/alibi-detect/pull/752)): + - When `preprocess_fn` was a custom Python function wrapped in a partial, kwarg's were not serialized. This has now been fixed. + - When saving drift detector `preprocess_fn`'s, the filenames for kwargs saved to `.dill` files are now prepended with the kwarg name. This avoids files being overwritten if multiple kwargs are saved to `.dill`. ## v0.11.0 [Full Changelog](https://github.com/SeldonIO/alibi-detect/compare/v0.10.5...v0.11.0) diff --git a/CITATION.cff b/CITATION.cff index c68b416e1..75c8f6913 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -19,6 +19,6 @@ authors: - family-names: "Athorne" given-names: "Alex" title: "Alibi Detect: Algorithms for outlier, adversarial and drift detection" -version: 0.11.0 -date-released: 2023-02-01 +version: 0.11.1 +date-released: 2023-03-03 url: "https://github.com/SeldonIO/alibi-detect" diff --git a/README.md b/README.md index d58fb53eb..52d9a5df4 100644 --- a/README.md +++ b/README.md @@ -407,8 +407,8 @@ BibTeX entry: title = {Alibi Detect: Algorithms for outlier, adversarial and drift detection}, author = {Van Looveren, Arnaud and Klaise, Janis and Vacanti, Giovanni and Cobb, Oliver and Scillitoe, Ashley and Samoilescu, Robert and Athorne, Alex}, url = {https://github.com/SeldonIO/alibi-detect}, - version = {0.11.0}, - date = {2023-02-01}, + version = {0.11.1}, + date = {2023-03-03}, year = {2019} } ``` diff --git a/alibi_detect/version.py b/alibi_detect/version.py index d5334bb66..603632d35 100644 --- a/alibi_detect/version.py +++ b/alibi_detect/version.py @@ -3,4 +3,4 @@ # 2) we can import it in setup.py for the same reason # 3) we can import it into your module module -__version__ = "0.12.0dev" +__version__ = "0.11.1"