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.13.0.dev0'
__version__ = '1.13.0'

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

## 1.13.0 (2025-12-28)


### Major changes

- Support for Python 3.14 has been added.
- Symbols exported in public namespaces have been reviewed and adjusted.
- `torch.take` and `torch.take_along_axis` now support negative indices.
- `torch.meshgrid` now correctly processes the `indexing` argument.
- View/copy semantics are now observed for the `ceil`, `floor`, and `trunc` functions.

### Minor changes

- `array_namespace` has been sped up via caching.
- The `stable` parameter of `torch.argsort` now defaults to `True`, per the standard.
- Type annotations have seen progress.
- `is_jax_array` has been adjusted for compatibility with `jax>=0.8.2`


The following users contributed to this release:

Evgeni Burovski,
Guido Imperiale,
Lucas Colley,
Arthur Lacote,
Martin Schuck,
Matt Haberland.


## 1.12.0 (2025-05-13)


Expand Down
Loading