Skip to content

Commit debf96b

Browse files
chore: release v0.7.2
1 parent caf3a30 commit debf96b

4 files changed

Lines changed: 31 additions & 31 deletions

File tree

.changeset/kan-674-fix-powershell-parser-error-in-chocolatey-digest-read-step.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## [0.7.2] - 2026-06-10 ([#331](https://github.com/fulsomenko/kanban/pull/331))
2+
3+
### KAN-674 Fix Powershell Parser Error In Chocolatey Digest Read Step (2026-06-10)
4+
5+
The Chocolatey publish job now succeeds past the asset-readiness poll
6+
step. A latent PowerShell parser bug in the `Read Windows ZIP digest
7+
from GitHub Release` step (introduced by KAN-656) was masking the rest
8+
of the Chocolatey publish path on every release since that change
9+
landed: PowerShell interpreted `$asset:` as a scoped variable
10+
reference (the same syntax as `$env:VAR`), so the step exited with a
11+
parser error before the SHA256 could be written to the step outputs.
12+
The user-facing effect was that Chocolatey was stuck at the last
13+
version published before KAN-656, even though crates.io, AUR,
14+
Homebrew, and GitHub Release shipped each new version normally. The
15+
silent-failure caveat from KAN-649 plus the warning annotation from
16+
KAN-667 made this visible at release time, but no actual fix for the
17+
parser bug had landed until now.
18+
The fix is one character — wrapping `$asset` in braces (`${asset}`) so
19+
PowerShell stops looking for a scope qualifier after the colon.
20+
21+
122
## [0.7.1] - 2026-06-08 ([#329](https://github.com/fulsomenko/kanban/pull/329))
223

324
### KAN-667 Visible Failure Notification For Publish Chocolatey (2026-06-08)

Cargo.lock

Lines changed: 9 additions & 9 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
@@ -13,7 +13,7 @@ members = [
1313
]
1414

1515
[workspace.package]
16-
version = "0.7.1"
16+
version = "0.7.2"
1717
edition = "2021"
1818
rust-version = "1.74"
1919
authors = ["Max Emil Yoon Blomstervall"]

0 commit comments

Comments
 (0)