Skip to content

Commit 8fee501

Browse files
committed
Rename x64 artifact to x86_64, bump to 0.5.2
1 parent cc42bc6 commit 8fee501

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
matrix:
1919
include:
2020
- target: x86_64-unknown-linux-gnu
21-
alias: x64
21+
alias: x86_64
2222
qemu: ""
2323
features: ""
2424
- target: i686-unknown-linux-gnu

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
matrix:
1818
include:
1919
- target: x86_64-unknown-linux-gnu
20-
alias: x64
20+
alias: x86_64
2121
qemu: ""
2222
features: ""
2323
- target: i686-unknown-linux-gnu

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ Runs when a version tag is pushed (e.g., `git tag v0.5.0 && git push --tags`):
154154
1. Builds all 7 architecture binaries
155155
2. Runs smoke tests (native and via QEMU)
156156
3. Creates a GitHub Release with:
157-
- All binaries attached (`kv-x64`, `kv-arm64`, etc.)
157+
- All binaries attached (`kv-x86_64`, `kv-arm64`, etc.)
158158
- Auto-generated release notes from commits
159159

160160
**Manual triggers**: Both workflows can be run manually from the GitHub Actions tab.

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 = "kv"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
edition = "2024"
55
rust-version = "1.85"
66
description = "kv (kernel view): a portable system inspector for Linux"

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ Each release includes SHA256 checksums for verification.
2121
**x86_64** (most Linux servers and desktops):
2222

2323
```bash
24-
curl -LO https://github.com/walruscraft/kv/releases/latest/download/kv-x64
25-
curl -LO https://github.com/walruscraft/kv/releases/latest/download/kv-x64.sha256
26-
sha256sum -c kv-x64.sha256
27-
mv kv-x64 kv && chmod +x kv
24+
curl -LO https://github.com/walruscraft/kv/releases/latest/download/kv-x86_64
25+
curl -LO https://github.com/walruscraft/kv/releases/latest/download/kv-x86_64.sha256
26+
sha256sum -c kv-x86_64.sha256
27+
mv kv-x86_64 kv && chmod +x kv
2828
./kv --version
2929
```
3030

@@ -51,17 +51,17 @@ This proves the binary was built by the official release workflow, not a comprom
5151
```bash
5252
# Install cosign (https://docs.sigstore.dev/cosign/system_config/installation/)
5353
# Then verify:
54-
cosign verify-blob kv-x64 \
55-
--signature kv-x64.sig \
56-
--certificate kv-x64.crt \
54+
cosign verify-blob kv-x86_64 \
55+
--signature kv-x86_64.sig \
56+
--certificate kv-x86_64.crt \
5757
--certificate-oidc-issuer https://token.actions.githubusercontent.com \
5858
--certificate-identity-regexp 'https://github.com/walruscraft/kv/\.github/workflows/release\.yml@refs/tags/v.*'
5959
```
6060

6161
**Quick install (skip verification):**
6262

6363
```bash
64-
curl -Lo kv https://github.com/walruscraft/kv/releases/latest/download/kv-x64 && chmod +x kv
64+
curl -Lo kv https://github.com/walruscraft/kv/releases/latest/download/kv-x86_64 && chmod +x kv
6565
```
6666

6767
**Copy to an embedded board:**

0 commit comments

Comments
 (0)