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 .github/actions/check-version/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: Verify pyproject.toml, MODULE.bazel, and chipcompiler/__version__ a

inputs:
expected_tag:
description: 'Expected tag (e.g., v0.1.0). If provided, also verify the tag matches the version.'
description: 'Expected tag (e.g., v0.1.0-alpha.2). If provided, also verify the tag matches the version.'
required: false
default: ''

Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ on:
workflow_dispatch:
inputs:
tag_name:
description: 'Tag to release (e.g., v0.1.0)'
required: true
description: 'Tag to release (e.g., v0.1.0-alpha.2)'
required: false
default: 'v0.1.0-alpha.2'

permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ genrule(
"//chipcompiler:chipcompiler_python_sources",
"//chipcompiler:chipcompiler_runtime_data",
],
outs = ["raw_wheel/ecc-0.1.0a1-py3-none-any.whl"],
outs = ["raw_wheel/ecc-0.1.0a2-py3-none-any.whl"],
tools = ["@multitool//tools/uv"],
cmd = """
set -euo pipefail
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module(
name = "ecc",
version = "0.1.0-alpha.1",
version = "0.1.0-alpha.2",
)

bazel_dep(name = "rules_python", version = "1.7.0")
Expand Down
2 changes: 1 addition & 1 deletion chipcompiler/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# chipcompiler package
__version__ = "0.1.0-alpha.1"
__version__ = "0.1.0-alpha.2"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = [ "uv-build>=0.8.5" ]

[project]
name = "ecc"
version = "0.1.0-alpha.1"
version = "0.1.0-alpha.2"
readme = "README.md"
authors = [
{ name = "Emin", email = "me@emin.chat" },
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading