Skip to content

Commit 40f4121

Browse files
author
Ashley Scillitoe
committed
v0.11.1
1 parent d1c137b commit 40f4121

File tree

4 files changed

+8
-11
lines changed

4 files changed

+8
-11
lines changed

CHANGELOG.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
# Change Log
22

3-
## v0.12.0dev
4-
[Full Changelog](https://github.com/SeldonIO/alibi-detect/compare/v0.11.1...master)
5-
63
## v0.11.1
74
[Full Changelog](https://github.com/SeldonIO/alibi-detect/compare/v0.11.0...v0.11.1)
85

96
### Fixed
107

11-
- Fixed two bugs with the saving/loading of drift detector `preprocess_fn`'s [#752](https://github.com/SeldonIO/alibi-detect/pull/752)):
12-
- When `preprocess_fn` was a custom Python function wrapped in a partial, included kwarg's were not serialized. This has now been fixed.
13-
- 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`.
8+
- Fixed two bugs with the saving/loading of drift detector `preprocess_fn`'s ([#752](https://github.com/SeldonIO/alibi-detect/pull/752)):
9+
- When `preprocess_fn` was a custom Python function wrapped in a partial, kwarg's were not serialized. This has now been fixed.
10+
- 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`.
1411

1512
## v0.11.0
1613
[Full Changelog](https://github.com/SeldonIO/alibi-detect/compare/v0.10.5...v0.11.0)

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ authors:
1919
- family-names: "Athorne"
2020
given-names: "Alex"
2121
title: "Alibi Detect: Algorithms for outlier, adversarial and drift detection"
22-
version: 0.11.0
23-
date-released: 2023-02-01
22+
version: 0.11.1
23+
date-released: 2023-03-03
2424
url: "https://github.com/SeldonIO/alibi-detect"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -407,8 +407,8 @@ BibTeX entry:
407407
title = {Alibi Detect: Algorithms for outlier, adversarial and drift detection},
408408
author = {Van Looveren, Arnaud and Klaise, Janis and Vacanti, Giovanni and Cobb, Oliver and Scillitoe, Ashley and Samoilescu, Robert and Athorne, Alex},
409409
url = {https://github.com/SeldonIO/alibi-detect},
410-
version = {0.11.0},
411-
date = {2023-02-01},
410+
version = {0.11.1},
411+
date = {2023-03-03},
412412
year = {2019}
413413
}
414414
```

alibi_detect/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
# 2) we can import it in setup.py for the same reason
44
# 3) we can import it into your module module
55

6-
__version__ = "0.12.0dev"
6+
__version__ = "0.11.1"

0 commit comments

Comments
 (0)