From 655d3ed7508f7c1efdf66a8f212ae223a92ae292 Mon Sep 17 00:00:00 2001 From: James Sturtevant Date: Thu, 12 Jun 2025 15:43:32 -0700 Subject: [PATCH] Updates for patch release v0.6.1 Signed-off-by: James Sturtevant --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 14 +++++++------- Cargo.toml | 14 +++++++------- 3 files changed, 22 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d98fac1a..6fd150a35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). ## [Prerelease] - Unreleased +## [v0.6.1] - 2025-06-12 + +### Fixed + +- Make OS_PAGE_SIZE public again by @jprendes in https://github.com/hyperlight-dev/hyperlight/pull/609 +- Bring back HostFunctionDefinitions Region by @danbugs in https://github.com/hyperlight-dev/hyperlight/pull/600 +- Allow hyperlight-host to build with x86_64-unknown-linux-musl target by @simongdavies in https://github.com/hyperlight-dev/hyperlight/pull/601 + ## [v0.6.0] - 2025-06-06 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 69d1c6d40..821ce8b17 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1153,7 +1153,7 @@ dependencies = [ [[package]] name = "hyperlight-common" -version = "0.6.0" +version = "0.6.1" dependencies = [ "anyhow", "arbitrary", @@ -1166,7 +1166,7 @@ dependencies = [ [[package]] name = "hyperlight-component-macro" -version = "0.6.0" +version = "0.6.1" dependencies = [ "env_logger", "hyperlight-component-util", @@ -1180,7 +1180,7 @@ dependencies = [ [[package]] name = "hyperlight-component-util" -version = "0.6.0" +version = "0.6.1" dependencies = [ "itertools 0.14.0", "log", @@ -1202,7 +1202,7 @@ dependencies = [ [[package]] name = "hyperlight-guest" -version = "0.6.0" +version = "0.6.1" dependencies = [ "anyhow", "hyperlight-common", @@ -1211,7 +1211,7 @@ dependencies = [ [[package]] name = "hyperlight-guest-bin" -version = "0.6.0" +version = "0.6.1" dependencies = [ "buddy_system_allocator", "cc", @@ -1225,7 +1225,7 @@ dependencies = [ [[package]] name = "hyperlight-host" -version = "0.6.0" +version = "0.6.1" dependencies = [ "anyhow", "bitflags 2.9.1", @@ -1311,7 +1311,7 @@ dependencies = [ [[package]] name = "hyperlight_guest_capi" -version = "0.6.0" +version = "0.6.1" dependencies = [ "cbindgen", "hyperlight-common", diff --git a/Cargo.toml b/Cargo.toml index 493aa1c04..8165fbdf3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ exclude = [ ] [workspace.package] -version = "0.6.0" +version = "0.6.1" edition = "2024" rust-version = "1.85" license = "Apache-2.0" @@ -34,13 +34,13 @@ repository = "https://github.com/hyperlight-dev/hyperlight" readme = "README.md" [workspace.dependencies] -hyperlight-common = { path = "src/hyperlight_common", version = "0.6.0", default-features = false } -hyperlight-host = { path = "src/hyperlight_host", version = "0.6.0", default-features = false } -hyperlight-guest = { path = "src/hyperlight_guest", version = "0.6.0", default-features = false } -hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.6.0", default-features = false } +hyperlight-common = { path = "src/hyperlight_common", version = "0.6.1", default-features = false } +hyperlight-host = { path = "src/hyperlight_host", version = "0.6.1", default-features = false } +hyperlight-guest = { path = "src/hyperlight_guest", version = "0.6.1", default-features = false } +hyperlight-guest-bin = { path = "src/hyperlight_guest_bin", version = "0.6.1", default-features = false } hyperlight-testing = { path = "src/hyperlight_testing", default-features = false } -hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.6.0", default-features = false } -hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.6.0", default-features = false } +hyperlight-component-util = { path = "src/hyperlight_component_util", version = "0.6.1", default-features = false } +hyperlight-component-macro = { path = "src/hyperlight_component_macro", version = "0.6.1", default-features = false } [workspace.lints.rust] unsafe_op_in_unsafe_fn = "deny"