From e6fb25db36ce4732478855520d75b4224a0cb067 Mon Sep 17 00:00:00 2001 From: Aaron Meurer Date: Fri, 8 Mar 2024 13:47:35 -0700 Subject: [PATCH] Add changelog for 1.1 release --- CHANGELOG.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be40bd6..1915d06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # array-api-strict Changelog -## 1.0 (????) +## 1.1 (2024-04-08) + +- Fix the `copy` flag in `__array__` for NumPy 2.0. + +- Add full `copy=False` support to `asarray()`. This is emulated in NumPy 1.26 by creating + the array and seeing if it is copied. For NumPy 2.0, the new native + `copy=False` flag is used. + +- Add broadcasting support to `cross`. + +## 1.0 (2024-01-24) This is the first release of `array_api_strict`. It is extracted from `numpy.array_api`, which was included as an experimental submodule in NumPy