Skip to content

2.1 release #71

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 26 additions & 2 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,32 @@
# Changelog

### 2.0.1 (2024-07-01)

## Minor Changes
## 2.1 (2024-10-18)

## Major Changes

- The default version of the array API standard is now 2023.12. 2022.12 can
still be enabled via the [flags API](array-api-strict-flags).

- Added support for multiple fake "devices", so that code testing against
array-api-strict can check for proper device support. Currently there are
three "devices", the "CPU" device, which is the default devices, and two
pseudo "device" objects. This set of devices can be accessed with
`array_api_strict.__array_namespace_info__().devices()` (requires the array
API version to be set to 2023.12), and via the other array API APIs that
return devices (like `x.device`). These devices do not correspond to any
actual hardware and only exist for testing array API device semantics; for
instance, implicitly combining arrays on different devices results in an
exception. (Thanks to [@betatim](https://github.com/betatim)).

### Minor Changes

- Avoid implicitly relying on `__array__` in some places. These changes should
not be usef visible.

## 2.0.1 (2024-07-01)

### Minor Changes

- Re-allow iteration on 1-D arrays. A change from 2.0 fixed iter() raising on
n-D arrays but also made 1-D arrays raise. The standard does not explicitly
Expand Down
Loading