diff --git a/CHANGELOG.md b/CHANGELOG.md index e48c0bc44..c7c0ca9c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). ## [Prerelease] - Unreleased +## [v0.5.1] - 2025-06-02 +### Fixed +- Fixed an issue with the `hyperlight_host` not building on v0.5.0 + ## [v0.5.0] - 2025-05-28 ### Changed diff --git a/Cargo.lock b/Cargo.lock index d3dd1226b..30fe4420c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1144,7 +1144,7 @@ dependencies = [ [[package]] name = "hyperlight-common" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "arbitrary", @@ -1165,7 +1165,7 @@ dependencies = [ [[package]] name = "hyperlight-guest" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "hyperlight-common", @@ -1174,7 +1174,7 @@ dependencies = [ [[package]] name = "hyperlight-guest-bin" -version = "0.5.0" +version = "0.5.1" dependencies = [ "buddy_system_allocator", "cc", @@ -1188,7 +1188,7 @@ dependencies = [ [[package]] name = "hyperlight-host" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "bitflags 2.9.1", @@ -1271,7 +1271,7 @@ dependencies = [ [[package]] name = "hyperlight_guest_capi" -version = "0.5.0" +version = "0.5.1" dependencies = [ "cbindgen", "hyperlight-common", diff --git a/Cargo.toml b/Cargo.toml index 099d9000c..828a07516 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ exclude = [ ] [workspace.package] -version = "0.5.0" +version = "0.5.1" edition = "2024" rust-version = "1.85" license = "Apache-2.0" @@ -31,10 +31,10 @@ repository = "https://github.com/hyperlight-dev/hyperlight" readme = "README.md" [workspace.dependencies] -hyperlight-common = { path = "src/hyperlight_common", version = "0.5.0", default-features = false } -hyperlight-host = { path = "src/hyperlight_host", version = "0.5.0", default-features = false } -hyperlight-guest = { path = "src/hyperlight_guest", version = "0.5.0", default-features = false } -hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.5.0", default-features = false } +hyperlight-common = { path = "src/hyperlight_common", version = "0.5.1", default-features = false } +hyperlight-host = { path = "src/hyperlight_host", version = "0.5.1", default-features = false } +hyperlight-guest = { path = "src/hyperlight_guest", version = "0.5.1", default-features = false } +hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.5.1", default-features = false } hyperlight-testing = { path = "src/hyperlight_testing", default-features = false } [workspace.lints.rust] diff --git a/src/tests/rust_guests/callbackguest/Cargo.lock b/src/tests/rust_guests/callbackguest/Cargo.lock index f732f5e37..b75ceb519 100644 --- a/src/tests/rust_guests/callbackguest/Cargo.lock +++ b/src/tests/rust_guests/callbackguest/Cargo.lock @@ -71,7 +71,7 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" [[package]] name = "hyperlight-common" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "flatbuffers", @@ -80,7 +80,7 @@ dependencies = [ [[package]] name = "hyperlight-guest" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "hyperlight-common", @@ -89,7 +89,7 @@ dependencies = [ [[package]] name = "hyperlight-guest-bin" -version = "0.5.0" +version = "0.5.1" dependencies = [ "buddy_system_allocator", "cc", diff --git a/src/tests/rust_guests/simpleguest/Cargo.lock b/src/tests/rust_guests/simpleguest/Cargo.lock index 85a24ce42..2b53c3de3 100644 --- a/src/tests/rust_guests/simpleguest/Cargo.lock +++ b/src/tests/rust_guests/simpleguest/Cargo.lock @@ -62,7 +62,7 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" [[package]] name = "hyperlight-common" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "flatbuffers", @@ -71,7 +71,7 @@ dependencies = [ [[package]] name = "hyperlight-guest" -version = "0.5.0" +version = "0.5.1" dependencies = [ "anyhow", "hyperlight-common", @@ -80,7 +80,7 @@ dependencies = [ [[package]] name = "hyperlight-guest-bin" -version = "0.5.0" +version = "0.5.1" dependencies = [ "buddy_system_allocator", "cc",