From dc654e0777a5f44d4fdc729a27e63c791c01b15b Mon Sep 17 00:00:00 2001 From: Lucas Colley Date: Sun, 7 Jun 2026 21:58:34 +0100 Subject: [PATCH] MAINT: bump version to 1.16.0.dev0 --- docs/dev/releasing.md | 2 +- meson.build | 2 +- pyproject.toml | 2 +- src/array_api_compat/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/dev/releasing.md b/docs/dev/releasing.md index d04a3717..09844e9a 100644 --- a/docs/dev/releasing.md +++ b/docs/dev/releasing.md @@ -99,7 +99,7 @@ docs update (the docs are published automatically from the sources on `main`). -- [ ] **Bump the `__version__` attribute in `__init__.py`** +- [ ] **Bump the version in all locations mentioned above** After an M.N.0 release, further development is towards version `M.(N+1).0`, thus the main branch's version is `M.(N+1).0.dev0`. diff --git a/meson.build b/meson.build index a43fa10f..f3d816fe 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project( 'array_api_compat', - version: '1.15.0', + version: '1.16.0.dev0', license: 'MIT', license_files: ['LICENSE'] ) diff --git a/pyproject.toml b/pyproject.toml index bcbfd8cd..4ca2f429 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "mesonpy" [project] name = "array-api-compat" -version = "1.15.0" +version = "1.16.0.dev0" description = "A wrapper around NumPy and other array libraries to make them compatible with the Array API standard" readme = "README.md" requires-python = ">=3.10" diff --git a/src/array_api_compat/__init__.py b/src/array_api_compat/__init__.py index e31542d5..eb3a948b 100644 --- a/src/array_api_compat/__init__.py +++ b/src/array_api_compat/__init__.py @@ -17,6 +17,6 @@ this implementation for the default when working with NumPy arrays. """ -__version__ = '1.15.0' +__version__ = '1.16.0.dev0' from .common import * # noqa: F403