From 22b1774aa3db8b50a51d5378c00b7eb1e55c9a4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Doru=20Bl=C3=A2nzeanu?= Date: Thu, 27 Mar 2025 18:35:13 +0200 Subject: [PATCH 1/2] release: change crate version and CHANGELOG.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Doru Blânzeanu --- CHANGELOG.md | 18 +++++++++++++++++- Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec6bc3d22..683347aa1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). ## [Prerelease] - Unreleased ### Added +- + +### Changed +- + +### Removed +- + +### Fixed +- + +## [v.0.3.0] - 2025-03-27 + +### Added +- Gdb support for mshv guests #327 by @dblnz in [#327](https://github.com/hyperlight-dev/hyperlight/pull/327) - Add fuzzing targets for fuzzing guest and host call parameters and return value by @ludfjig in [#259](https://github.com/hyperlight-dev/hyperlight/pull/259) ### Changed @@ -50,6 +65,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). The Initial Hyperlight Release 🎉 -[Prerelease]: +[Prerelease]: +[v0.3.0]: [v0.2.0]: [v0.1.0]: \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index ee32c3493..7e51d9884 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ exclude = [ ] [workspace.package] -version = "0.2.0" +version = "0.3.0" edition = "2021" rust-version = "1.81.0" license = "Apache-2.0" From 11c999eb68e719de505e38ea6d4f644114cdb9f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Doru=20Bl=C3=A2nzeanu?= Date: Thu, 27 Mar 2025 18:44:39 +0200 Subject: [PATCH 2/2] release: update dependencies versions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Doru Blânzeanu --- Cargo.lock | 8 ++++---- Cargo.toml | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c9ace3324..da83671ac 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1083,7 +1083,7 @@ dependencies = [ [[package]] name = "hyperlight-common" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "arbitrary", @@ -1105,7 +1105,7 @@ dependencies = [ [[package]] name = "hyperlight-guest" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "buddy_system_allocator", @@ -1120,7 +1120,7 @@ dependencies = [ [[package]] name = "hyperlight-host" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "bitflags 2.9.0", @@ -1204,7 +1204,7 @@ dependencies = [ [[package]] name = "hyperlight_guest_capi" -version = "0.2.0" +version = "0.3.0" dependencies = [ "cbindgen", "hyperlight-common", diff --git a/Cargo.toml b/Cargo.toml index 7e51d9884..620770ad6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,9 +26,9 @@ repository = "https://github.com/hyperlight-dev/hyperlight" readme = "README.md" [workspace.dependencies] -hyperlight-common = { path = "src/hyperlight_common", version = "0.2.0", default-features = false } -hyperlight-host = { path = "src/hyperlight_host", version = "0.2.0", default-features = false } -hyperlight-guest = { path = "src/hyperlight_guest", version = "0.2.0", default-features = false } +hyperlight-common = { path = "src/hyperlight_common", version = "0.3.0", default-features = false } +hyperlight-host = { path = "src/hyperlight_host", version = "0.3.0", default-features = false } +hyperlight-guest = { path = "src/hyperlight_guest", version = "0.3.0", default-features = false } hyperlight-testing = { path = "src/hyperlight_testing", default-features = false } [workspace.lints.rust]