Skip to content

Commit

Permalink
v0.10.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ascillitoe committed Aug 16, 2022
1 parent b3457a5 commit 61c89b1
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)).
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}
}
```
2 changes: 1 addition & 1 deletion alibi_detect/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 61c89b1

Please sign in to comment.