Skip to content

Commit 9c9822a

Browse files
release: v2.0.1
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent f12edf6 commit 9c9822a

4 files changed

Lines changed: 11 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.0.1] - 2026-03-14
11+
1012
### Fixed
1113

1214
- SBOM attestation in release workflow: use platform-specific SBOM path (`index .SBOM "linux/amd64"`) instead of `.SBOM.SPDX` which returns `null` for multi-platform images.

Cargo.lock

Lines changed: 1 addition & 1 deletion
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
@@ -1,6 +1,6 @@
11
[package]
22
name = "initium"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
authors = ["Kitstream <opensource@kitstream.io>"]
55
categories = ["command-line-utilities", "development-tools"]
66
documentation = "https://docs.rs/initium"

docs/security.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@ Release images are signed with [cosign](https://github.com/sigstore/cosign) usin
8686
# Verify signature (requires cosign)
8787
cosign verify \
8888
--certificate-oidc-issuer https://token.actions.githubusercontent.com \
89-
--certificate-identity 'https://github.com/KitStream/initium/.github/workflows/release.yml@refs/tags/v2.0.0' \
90-
ghcr.io/kitstream/initium:2.0.0
89+
--certificate-identity 'https://github.com/KitStream/initium/.github/workflows/release.yml@refs/tags/v2.0.1' \
90+
ghcr.io/kitstream/initium:2.0.1
9191
9292
# Or use the Makefile target (also supports IMAGE=ghcr.io/kitstream/initium-jyq)
93-
make verify-image VERSION=2.0.0
93+
make verify-image VERSION=2.0.1
9494
```
9595

9696
### Verify SBOM attestation
@@ -99,8 +99,8 @@ make verify-image VERSION=2.0.0
9999
cosign verify-attestation \
100100
--type spdx \
101101
--certificate-oidc-issuer https://token.actions.githubusercontent.com \
102-
--certificate-identity 'https://github.com/KitStream/initium/.github/workflows/release.yml@refs/tags/v2.0.0' \
103-
ghcr.io/kitstream/initium:2.0.0
102+
--certificate-identity 'https://github.com/KitStream/initium/.github/workflows/release.yml@refs/tags/v2.0.1' \
103+
ghcr.io/kitstream/initium:2.0.1
104104
```
105105

106106
### View provenance and SBOM
@@ -109,8 +109,8 @@ Provenance and SBOM attestations are generated by Docker BuildKit during the ima
109109

110110
```bash
111111
# View provenance
112-
docker buildx imagetools inspect ghcr.io/kitstream/initium:2.0.0 --format '{{json .Provenance}}'
112+
docker buildx imagetools inspect ghcr.io/kitstream/initium:2.0.1 --format '{{json .Provenance}}'
113113
114114
# View SBOM
115-
docker buildx imagetools inspect ghcr.io/kitstream/initium:2.0.0 --format '{{json .SBOM}}'
115+
docker buildx imagetools inspect ghcr.io/kitstream/initium:2.0.1 --format '{{json .SBOM}}'
116116
```

0 commit comments

Comments
 (0)