diff --git a/CHANGELOG.md b/CHANGELOG.md index 47d97b4ed..f76c70256 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [v0.3.2](https://github.com/SeldonIO/alibi/tree/v0.3.2) (2019-10-17) +[Full Changelog](https://github.com/SeldonIO/alibi/compare/v0.3.1...v0.3.2) +### Added +- All explanations return a metadata field `meta` with a `name` subfield which is currently the name of the class +### Changed +- Provide URL options for fetching some datasets, by default now fetches from a public Seldon bucket + ## [v0.3.1](https://github.com/SeldonIO/alibi/tree/v0.3.1) (2019-10-01) [Full Changelog](https://github.com/SeldonIO/alibi/compare/v0.3.0...v0.3.1) ### Fixed diff --git a/alibi/version.py b/alibi/version.py index d2438b81c..ac7924c65 100644 --- a/alibi/version.py +++ b/alibi/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.3.2dev' +__version__ = '0.3.2'