Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion array_api_compat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
this implementation for the default when working with NumPy arrays.

"""
__version__ = '1.14.0.dev0'
__version__ = '1.14.0'

from .common import * # noqa: F401, F403
32 changes: 32 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# Changelog

## 1.14.0 (2026-02-26)

### Major changes

This release targets the 2025.12 Array API revision. This includes

- `__array_api_version__` for the wrapped APIs is now set to `2025.12`;
- wrappers for `linalg.eig` and `linalg.eigvals`;
- wrappers for `isin` and `searchsorted` to accept Python scalars;
- wrappers for `expand_dims` accepting tuple axes;
- `broadcast_arrays`, `meshgrid` and `__array_api_info__().devices()` have been
changed to return tuples, not lists;

Additionally,

- `clip` wrappers have been fixed to be compatible with `torch.vmap`.


### Minor changes

- `expand_dims` wrappers have been fixed to accept its `axis` argument as a keyword
or positional argument;
- `torch.clip` wrappers have been fixed to correctly handle `nan` scalars;
- `torch.repeat` wrapper has been fixed to not error out for short integers;


The following users contributed to this release:

Evgeni Burovski,
Josh Soref.


## 1.13.0 (2025-12-28)


Expand Down
Loading