Skip to content

Commit 1dfda49

Browse files
author
Ashley Scillitoe
committed
v0.10.3
1 parent cf03eb7 commit 1dfda49

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

CHANGELOG.md

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

3-
## v0.10.3dev
4-
[Full Changelog](https://github.com/SeldonIO/alibi-detect/compare/v0.10.2...master)
3+
## v0.10.3
4+
## [v0.10.3](https://github.com/SeldonIO/alibi-detect/tree/v0.10.3) (2022-08-17)
5+
[Full Changelog](https://github.com/SeldonIO/alibi-detect/compare/v0.10.2...v0.10.3)
6+
7+
### Fixed
8+
- Fix to allow `config.toml` files to be loaded when the [meta] field is not present ([#591](https://github.com/SeldonIO/alibi-detect/pull/591)).
59

610
## v0.10.2
711
## [v0.10.2](https://github.com/SeldonIO/alibi-detect/tree/v0.10.2) (2022-08-16)

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.10.2
23-
date-released: 2022-08-16
22+
version: 0.10.3
23+
date-released: 2022-08-17
2424
url: "https://github.com/SeldonIO/alibi-detect"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,8 +395,8 @@ BibTeX entry:
395395
title = {Alibi Detect: Algorithms for outlier, adversarial and drift detection},
396396
author = {Van Looveren, Arnaud and Klaise, Janis and Vacanti, Giovanni and Cobb, Oliver and Scillitoe, Ashley and Samoilescu, Robert and Athorne, Alex},
397397
url = {https://github.com/SeldonIO/alibi-detect},
398-
version = {0.10.2},
399-
date = {2022-08-16},
398+
version = {0.10.3},
399+
date = {2022-08-17},
400400
year = {2019}
401401
}
402402
```

alibi_detect/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# 1) we don't load dependencies by storing it in __init__.py
33
# 2) we can import it in setup.py for the same reason
44
# 3) we can import it into your module module
5-
__version__ = "0.10.3dev"
5+
__version__ = "0.10.3"
66

77
# Define the config specification version. This is distinct to the library version above. It is only updated when
88
# any detector config schema is updated, such that loading a previous config spec cannot be guaranteed to work.

0 commit comments

Comments
 (0)