diff --git a/CHANGELOG.md b/CHANGELOG.md index 5395b2549..29533fd6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log +## [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) + +This is a patch release to officially enable support for Python 3.11.
+This is the last release with official support for Python 3.7. + +### Development +- Test library on Python 3.11 ([#817](https://github.com/SeldonIO/alibi-detect/pull/817)). +- Separate code quality into its own Github Action and only run against the main development version of Python, currently Python 3.10 ([#793](https://github.com/SeldonIO/alibi-detect/pull/793)). +- Check and remove stale `mypy` ignore commands ([#794](https://github.com/SeldonIO/alibi-detect/pull/794)). +- Add developer instructions for docstring formatting ([#789](https://github.com/SeldonIO/alibi-detect/pull/789)). +- Bump `scikit-image` version to `0.21.x` ([#803](https://github.com/SeldonIO/alibi-detect/pull/803)). +- Bump `numba` version to `0.57.x` ([#783](https://github.com/SeldonIO/alibi-detect/pull/783)). +- Bump `sphinx` version to `7.x` ([#782](https://github.com/SeldonIO/alibi-detect/pull/782)). + + ## [v0.11.2](https://github.com/SeldonIO/alibi-detect/tree/v0.11.2) (2023-04-28) [Full Changelog](https://github.com/SeldonIO/alibi-detect/compare/v0.11.1...v0.11.2) diff --git a/CITATION.cff b/CITATION.cff index cd2ad0232..b7cfa3ea2 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.2 -date-released: 2023-04-28 +version: 0.11.3 +date-released: 2023-06-21 url: "https://github.com/SeldonIO/alibi-detect" diff --git a/README.md b/README.md index 9a7e9b2ba..098275278 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.2}, - date = {2023-04-28}, + version = {0.11.3}, + date = {2023-06-21}, year = {2019} } ``` diff --git a/alibi_detect/version.py b/alibi_detect/version.py index 329c89e5e..0cfedc4f1 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.3dev" +__version__ = "0.11.3"