diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f4c1840e..daa32498b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Change Log ## v0.10.5 -## [v0.10.5](https://github.com/SeldonIO/alibi-detect/tree/v0.10.5) (2023-01-24) +## [v0.10.5](https://github.com/SeldonIO/alibi-detect/tree/v0.10.5) (2023-01-26) [Full Changelog](https://github.com/SeldonIO/alibi-detect/compare/v0.10.4...v0.10.5) ### Fixed diff --git a/CITATION.cff b/CITATION.cff index e162f25b3..2534e463a 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.4 -date-released: 2022-10-21 +version: 0.10.5 +date-released: 2023-01-26 url: "https://github.com/SeldonIO/alibi-detect" diff --git a/README.md b/README.md index c62f574f6..2d7f8b3d5 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.4}, - date = {2022-10-21}, + version = {0.10.5}, + date = {2023-01-26}, year = {2019} } ``` diff --git a/alibi_detect/version.py b/alibi_detect/version.py index 87e12cf5c..85cb23444 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.4" +__version__ = "0.10.5" # 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.