Skip to content

Commit e8d8b51

Browse files
committed
ci: add release target windows arm64
1 parent 935391a commit e8d8b51

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ jobs:
3939
os: macos-latest
4040
- target: x86_64-pc-windows-msvc
4141
os: windows-latest
42+
- target: aarch64-pc-windows-msvc
43+
os: windows-latest
4244

4345
runs-on: ${{ matrix.os }}
4446
steps:

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
# Huff Neo Compiler changelog
44

55
## Unreleased
6+
7+
## [1.5.3] - 2025-11-06
68
- Introducing `--relax-jumps` CLI flag to optimize jump instructions from PUSH2 to PUSH1.
79
- Optimizes jump instructions from PUSH2 to PUSH1 when jump targets are 0-255.
810
- Reduces deployment gas costs, but will not affect runtime gas costs.
@@ -17,6 +19,7 @@
1719
- Reject macros names that are equal to reserved builtin function names (fixes #131).
1820
- Fix stack overflow and argument resolution errors in nested macro invocations with labels (fixes #133).
1921
- Example: `M2(M3(<arg>))` followed by a label now compiles without errors.
22+
- Add Windows ARM64 (`aarch64-pc-windows-msvc`) binary to release targets.
2023

2124
## [1.5.2] - 2025-11-05
2225
- Add compile-time if/else if/else statements.

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
1111
readme = "README.md"
1212
repository = "https://github.com/foundry-rs/huff-neo"
1313
rust-version = "1.89"
14-
version = "1.5.2"
14+
version = "1.5.3"
1515

1616
[workspace.dependencies]
1717
huff-neo-codegen = { path = "crates/codegen" }

0 commit comments

Comments
 (0)