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 docs/dev/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project(
'array_api_compat',
version: '1.15.0',
version: '1.16.0.dev0',
license: 'MIT',
license_files: ['LICENSE']
)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/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.15.0'
__version__ = '1.16.0.dev0'

from .common import * # noqa: F403
Loading