diff --git a/CHANGELOG.md b/CHANGELOG.md index 29533fd6a..e5452dfd5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Change Log +## [v0.11.4](https://github.com/SeldonIO/alibi-detect/tree/v0.11.4) (2023-07-07) +[Full Changelog](https://github.com/SeldonIO/alibi-detect/compare/v0.11.3...v0.11.4) + +This is a patch release to support `numpy >= 1.24`, and drop official support for Python 3.7. + +### Fixed +- Replace numpy aliases of builtin types like `np.int`, in order to support `numpy >= 1.24` ([#826](https://github.com/SeldonIO/alibi-detect/pull/826)). + +### Development +- Drop official support for Python 3.7 ([#825](https://github.com/SeldonIO/alibi-detect/pull/825)). + + ## [v0.11.3](https://github.com/SeldonIO/alibi-detect/tree/v0.11.3) (2023-06-21) [Full Changelog](https://github.com/SeldonIO/alibi-detect/compare/v0.11.2...v0.11.3) diff --git a/CITATION.cff b/CITATION.cff index b7cfa3ea2..35e288946 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -19,6 +19,6 @@ authors: - family-names: "Athorne" given-names: "Alex" title: "Alibi Detect: Algorithms for outlier, adversarial and drift detection" -version: 0.11.3 -date-released: 2023-06-21 +version: 0.11.4 +date-released: 2023-07-07 url: "https://github.com/SeldonIO/alibi-detect" diff --git a/README.md b/README.md index 098275278..fbab72610 100644 --- a/README.md +++ b/README.md @@ -407,8 +407,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.11.3}, - date = {2023-06-21}, + version = {0.11.4}, + date = {2023-07-07}, year = {2019} } ``` diff --git a/alibi_detect/version.py b/alibi_detect/version.py index 504810c19..f8b148cc7 100644 --- a/alibi_detect/version.py +++ b/alibi_detect/version.py @@ -3,4 +3,4 @@ # 2) we can import it in setup.py for the same reason # 3) we can import it into your module module -__version__ = "0.11.4dev" +__version__ = "0.11.4"