From 8e17864002daa1c6c3e970212292f9ca18aa9265 Mon Sep 17 00:00:00 2001 From: Ruoqing He Date: Fri, 12 Sep 2025 01:31:38 +0000 Subject: [PATCH 1/2] chore: Update CHANGELOG.md Update CHANGELOG.md to document the header visibility change. Signed-off-by: Ruoqing He --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index af02959..daf75c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,12 @@ # Upcoming Release + ## Changed - [[#148](https://github.com/rust-vmm/linux-loader/pull/148)] Fixing kernel commandline parameter validation This change allows parameter values containing spaces in the middle, provided they are enclosed in quotes. However, strings with quotes in the middle will no longer be accepted as valid parameter values. +- [[#205](https://github.com/rust-vmm/linux-loader/pull/205)] Make image header for ARM and RISC-V public + Kernel headers for ARM and RISC-V are made public to be used in a fw_cfg + implementation that reads the kernel header. # [v0.13.0] From 61b02db75a558153bec024200d71c927b0dc9eb5 Mon Sep 17 00:00:00 2001 From: Ruoqing He Date: Fri, 12 Sep 2025 01:35:36 +0000 Subject: [PATCH 2/2] chore: Prepare 0.13.1 release Release v0.13.1 to consume kernel commandline parameter validation fix and image header for ARM and RISC-V visibility change. Signed-off-by: Ruoqing He --- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index daf75c7..623714f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Upcoming Release +# [v0.13.1] + ## Changed - [[#148](https://github.com/rust-vmm/linux-loader/pull/148)] Fixing kernel commandline parameter validation This change allows parameter values containing spaces in the middle, provided they are enclosed in quotes. However, diff --git a/Cargo.toml b/Cargo.toml index 120f443..4a2927c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "linux-loader" -version = "0.13.0" +version = "0.13.1" authors = [ "The rust-vmm maintainers", "rust-vmm AWS maintainers ",