From 9bc355fe37619f1f0626999a91203cab2a88010e Mon Sep 17 00:00:00 2001 From: Arnaud Van Looveren Date: Thu, 8 Oct 2020 10:50:49 +0100 Subject: [PATCH] v0.4.3 --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- alibi_detect/version.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5363deee..42b5b157a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [v0.4.3](https://github.com/SeldonIO/alibi-detect/tree/v0.4.3) (2020-10-08) +[Full Changelog](https://github.com/SeldonIO/alibi-detect/compare/v0.4.2...v0.4.3) +### Added +- Make Prophet an optional dependency +- Extend what is returned by the drift detectors to raw scores +- Add licenses from dependencies + ## [v0.4.2](https://github.com/SeldonIO/alibi-detect/tree/v0.4.2) (2020-09-09) [Full Changelog](https://github.com/SeldonIO/alibi-detect/compare/v0.4.1...v0.4.2) ### Added diff --git a/README.md b/README.md index bd4b2e223..52e0750d3 100644 --- a/README.md +++ b/README.md @@ -258,8 +258,8 @@ BibTeX entry: title = {{Alibi-Detect}: Algorithms for outlier and adversarial instance detection, concept drift and metrics.}, author = {Van Looveren, Arnaud and Vacanti, Giovanni and Klaise, Janis and Coca, Alexandru}, url = {https://github.com/SeldonIO/alibi-detect}, - version = {0.4.2}, - date = {2020-09-09}, + version = {0.4.3}, + date = {2020-10-08}, year = {2019} } ``` diff --git a/alibi_detect/version.py b/alibi_detect/version.py index 0231e0dd0..68cf0b741 100644 --- a/alibi_detect/version.py +++ b/alibi_detect/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.4.3dev" +__version__ = "0.4.3"