diff --git a/CHANGELOG.md b/CHANGELOG.md index d21b0459a..a92d8da66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,14 @@ # Change Log -## v0.10.2dev -[Full Changelog](https://github.com/SeldonIO/alibi-detect/compare/v0.10.1...master) +## v0.10.3dev +[Full Changelog](https://github.com/SeldonIO/alibi-detect/compare/v0.10.2...master) + +## v0.10.2 +## [v0.10.2](https://github.com/SeldonIO/alibi-detect/tree/v0.10.2) (2022-08-16) +[Full Changelog](https://github.com/SeldonIO/alibi-detect/compare/v0.10.1...v0.10.2) + +### Fixed +- Fixed a bug in the MMDDrift detector with `pytorch` backend, where the `kernel` attribute was not sent to the selected device ([#587](https://github.com/SeldonIO/alibi-detect/pull/587)). ### Development - Code Coverage added ([#584](https://github.com/SeldonIO/alibi-detect/pull/584)). diff --git a/CITATION.cff b/CITATION.cff index a55b83883..3521d4693 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.10.1 -date-released: 2022-08-10 +version: 0.10.2 +date-released: 2022-08-16 url: "https://github.com/SeldonIO/alibi-detect" diff --git a/README.md b/README.md index 6c1df9abf..c0fef774d 100644 --- a/README.md +++ b/README.md @@ -395,8 +395,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.10.1}, - date = {2022-08-10}, + version = {0.10.2}, + date = {2022-08-16}, year = {2019} } ``` diff --git a/alibi_detect/version.py b/alibi_detect/version.py index d0cb1889b..63f6c4110 100644 --- a/alibi_detect/version.py +++ b/alibi_detect/version.py @@ -2,7 +2,7 @@ # 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.10.2dev" +__version__ = "0.10.2" # Define the config specification version. This is distinct to the library version above. It is only updated when # any detector config schema is updated, such that loading a previous config spec cannot be guaranteed to work.