Skip to content

Commit

Permalink
v0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jklaise committed Mar 18, 2022
1 parent ea1edbe commit cff8355
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
20 changes: 18 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
# Change Log

## [v0.6.4](https://github.com/SeldonIO/alibi/tree/v0.6.4) (2021-01-28)
## [v0.6.5](https://github.com/SeldonIO/alibi/tree/v0.6.4) (2022-03-18)
[Full Changelog](https://github.com/SeldonIO/alibi/compare/v0.6.4...v0.6.5)

This is a patch release to correct a regression in `CounterfactualProto` introduced in `v0.6.3`.

### Added
- Added a [Frequently Asked Questions](https://docs.seldon.io/projects/alibi/en/latest/overview/faq.html) page to the docs.

### Fixed
- Fix a bug introduced in `v0.6.3` which prevented `CounterfactualProto` working with categorical features ([#612](https://github.com/SeldonIO/alibi/pull/612)).
- Fix an issue with the `LanguageModelSampler` where it would sometimes sample punctuation ([#585](https://github.com/SeldonIO/alibi/pull/585)).

### Development
- The maximum `tensorflow` version has been bumped from 2.7 to 2.8 ([#588](https://github.com/SeldonIO/alibi/pull/588)).


## [v0.6.4](https://github.com/SeldonIO/alibi/tree/v0.6.4) (2022-02-28)
[Full Changelog](https://github.com/SeldonIO/alibi/compare/v0.6.3...v0.6.4)

This is a patch release to correct a regression in `AnchorImage` introduced in `v0.6.3`.
Expand All @@ -11,7 +27,7 @@ This is a patch release to correct a regression in `AnchorImage` introduced in `
### Development
- The maximum versions of `Pillow` and `scikit-image` have been bumped to 9.x and 0.19.x respectively.

## [v0.6.3](https://github.com/SeldonIO/alibi/tree/v0.6.3) (2021-01-18)
## [v0.6.3](https://github.com/SeldonIO/alibi/tree/v0.6.3) (2022-01-18)
[Full Changelog](https://github.com/SeldonIO/alibi/compare/v0.6.2...v0.6.3)

### Added
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ authors:
given-names: "Ashley"
orcid: "https://orcid.org/0000-0001-8971-7224"
title: "Alibi Explain: Algorithms for Explaining Machine Learning Models"
version: 0.6.4
date-released: 2022-01-28
version: 0.6.5
date-released: 2022-03-18
url: "https://github.com/SeldonIO/alibi"
preferred-citation:
type: article
Expand Down
2 changes: 1 addition & 1 deletion alibi/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.5dev'
__version__ = '0.6.5'

0 comments on commit cff8355

Please sign in to comment.