From 3b0d2e796b0810ba24c86aad6ada44381f161138 Mon Sep 17 00:00:00 2001 From: Bo Chen Date: Tue, 24 Jan 2023 09:57:40 -0800 Subject: [PATCH] build: Release v28.2 (bug fix release) Signed-off-by: Bo Chen --- Cargo.lock | 2 +- Cargo.toml | 2 +- release-notes.md | 8 ++++++++ vm-migration/src/lib.rs | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 02da32466..0b2d27f5b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -143,7 +143,7 @@ dependencies = [ [[package]] name = "cloud-hypervisor" -version = "28.1.0" +version = "28.2.0" dependencies = [ "anyhow", "api_client", diff --git a/Cargo.toml b/Cargo.toml index 854c70a77..e72a3777f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cloud-hypervisor" -version = "28.1.0" +version = "28.2.0" authors = ["The Cloud Hypervisor Authors"] edition = "2021" default-run = "cloud-hypervisor" diff --git a/release-notes.md b/release-notes.md index e0f68da7b..cfb6f430b 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,3 +1,4 @@ +- [v28.2](#v282) - [v28.1](#v281) - [v28.0](#v280) - [Community Engagement (Reminder)](#community-engagement-reminder) @@ -248,6 +249,13 @@ - [Unit testing](#unit-testing) - [Integration tests parallelization](#integration-tests-parallelization) +# v28.2 +This is a bug fix release. The following issues have been addressed: + +* Fix QCOW2 refcount table size (#5034) +* Fix unpause support on MSHV in dual binary (#5037) +* Threads inside `virtio` devices are now shutdown on reboot (#5095) + # v28.1 This is a bug fix release. The following issues have been addressed: diff --git a/vm-migration/src/lib.rs b/vm-migration/src/lib.rs index 6db9d0b5a..2381099ad 100644 --- a/vm-migration/src/lib.rs +++ b/vm-migration/src/lib.rs @@ -13,7 +13,7 @@ pub mod protocol; /// Global VMM version for versioning const MAJOR_VERSION: u16 = 28; -const MINOR_VERSION: u16 = 1; +const MINOR_VERSION: u16 = 2; const VMM_VERSION: u16 = MAJOR_VERSION << 12 | MINOR_VERSION & 0b1111; pub trait VersionMapped {