From 336af218253dd750cb7948b59a7f81d490e59b67 Mon Sep 17 00:00:00 2001 From: Evgeni Burovski Date: Tue, 4 Mar 2025 10:22:14 +0100 Subject: [PATCH 1/2] DOC: add a changelog for the 1.11.1 release --- docs/changelog.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index 1de11606..bdf5f9e1 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,27 @@ # Changelog -## 1.11.0 (2025-XX-XX) +## 1.11.1 (2025-03-04) + +This is a bugfix release with no new features compared to version 1.11. + +### Major Changes + +- fix `count_nonzero` wrappers: work around the lack of the `keepdims` argument in + several array libraries (torch, dask, cupy); work around numpy returning python + ints in for some input combinations. + +### Minor Changes + +- runnings self-tests does not require all array libraries. Missing libraries are + skipped. + +The following users contributed to this release: + +Evgeni Burovski +Guido Imperiale + + +## 1.11.0 (2025-02-27) ### Major Changes From 8d991b437cdcdf2cd91bef33fbfd491a409cb64f Mon Sep 17 00:00:00 2001 From: Evgeni Burovski Date: Tue, 4 Mar 2025 10:32:39 +0100 Subject: [PATCH 2/2] REL: bump the version to 1.11.1 --- array_api_compat/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/array_api_compat/__init__.py b/array_api_compat/__init__.py index 60b37e97..b85f3025 100644 --- a/array_api_compat/__init__.py +++ b/array_api_compat/__init__.py @@ -17,6 +17,6 @@ this implementation for the default when working with NumPy arrays. """ -__version__ = '1.12.dev0' +__version__ = '1.11.1' from .common import * # noqa: F401, F403