Skip to content

Commit 70cd0ab

Browse files
authored
Merge pull request #110 from nao1215/fix/release-workflow-v0.7.2
fix: release workflow aarch64 build and add PR verification
2 parents 564526d + 5b1f8b1 commit 70cd0ab

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v0.7.2
4+
5+
### Fixed
6+
7+
- Fix aarch64 cross-compilation failure by using newer cross-rs base image with OpenSSL 3.x support.
8+
39
## v0.7.1
410

511
### Added

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 = "truss-image"
3-
version = "0.7.1"
3+
version = "0.7.2"
44
edition = "2024"
55
description = "Image toolkit with a shared Rust core across the CLI, HTTP server, and WASM demo."
66
license = "MIT"

Cross.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[target.aarch64-unknown-linux-gnu]
2+
image = "ghcr.io/cross-rs/aarch64-unknown-linux-gnu:main"
23
pre-build = [
3-
"dpkg --add-architecture arm64 && apt-get update && apt-get install -y libssl-dev:arm64",
4+
"dpkg --add-architecture arm64 && apt-get update && apt-get install -y libssl-dev:arm64 pkg-config",
45
]

doc/openapi.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
openapi: 3.0.3
22
info:
33
title: Truss Image Server API
4-
version: 0.7.1
4+
version: 0.7.2
55
description: |
66
HTTP API for the Truss image toolkit.
77
@@ -346,7 +346,7 @@ paths:
346346
example:
347347
status: ok
348348
service: truss
349-
version: 0.7.1
349+
version: 0.7.2
350350
uptimeSeconds: 3600
351351
checks:
352352
- name: storageRoot
@@ -385,7 +385,7 @@ paths:
385385
example:
386386
status: ok
387387
service: truss
388-
version: 0.7.1
388+
version: 0.7.2
389389

390390
/health/ready:
391391
get:

0 commit comments

Comments
 (0)