Skip to content

Commit e8d9568

Browse files
authored
Merge pull request #434 from lucascolley/bump-0.15.1
MAINT: bump version to 1.16.0.dev0
2 parents 076218e + dc654e0 commit e8d9568

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/dev/releasing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
docs update (the docs are published automatically from the sources on
100100
`main`).
101101

102-
- [ ] **Bump the `__version__` attribute in `__init__.py`**
102+
- [ ] **Bump the version in all locations mentioned above**
103103

104104
After an M.N.0 release, further development is towards version `M.(N+1).0`, thus the main branch's
105105
version is `M.(N+1).0.dev0`.

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project(
22
'array_api_compat',
3-
version: '1.15.0',
3+
version: '1.16.0.dev0',
44
license: 'MIT',
55
license_files: ['LICENSE']
66
)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "mesonpy"
44

55
[project]
66
name = "array-api-compat"
7-
version = "1.15.0"
7+
version = "1.16.0.dev0"
88
description = "A wrapper around NumPy and other array libraries to make them compatible with the Array API standard"
99
readme = "README.md"
1010
requires-python = ">=3.10"

src/array_api_compat/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
this implementation for the default when working with NumPy arrays.
1818
1919
"""
20-
__version__ = '1.15.0'
20+
__version__ = '1.16.0.dev0'
2121

2222
from .common import * # noqa: F403

0 commit comments

Comments
 (0)