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
5 changes: 2 additions & 3 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@
3. Push your changes to a PR, fix any CI failures, and merge to `main`.
4. Cut a release via the GitHub GUI.
5. Update the version to `{next micro version}.dev0` in `pyproject.toml`, `meson.build`, and `src/array_api_extra/__init__.py`.
6. `pixi lock`.
7. Push your changes to a PR and merge to `main`.
8. Merge the automated PR to `conda-forge/array-api-extra-feedstock`.
6. Push your changes to a PR and merge to `main`.
7. Merge the automated PR to `conda-forge/array-api-extra-feedstock`.
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-extra',
version: '0.11.0'
version: '0.11.1.dev0'
)

py = import('python').find_installation()
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-extra"
version = "0.11.0"
version = "0.11.1.dev0"
authors = [
{ name = "Lucas Colley", email = "lucas.colley8@gmail.com" },
# { name = "Open Source Contributors" }, # https://github.com/pypi/warehouse/issues/14813
Expand Down
2 changes: 1 addition & 1 deletion src/array_api_extra/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
)
from ._lib._lazy import lazy_apply

__version__ = "0.11.0"
__version__ = "0.11.1.dev0"

# pylint: disable=duplicate-code
__all__ = [
Expand Down