From e3de13040b951cb6a96bb63d8829af89c38541c3 Mon Sep 17 00:00:00 2001 From: German Maglione Date: Tue, 12 Mar 2024 17:08:03 +0100 Subject: [PATCH] vhost-user-backend: Prepare v0.14.0 release This release adds support for live migration, adding dirty pages tracking and initial postcopy support. Signed-off-by: German Maglione --- vhost-user-backend/CHANGELOG.md | 8 +++++++- vhost-user-backend/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/vhost-user-backend/CHANGELOG.md b/vhost-user-backend/CHANGELOG.md index bd835f7..f111551 100644 --- a/vhost-user-backend/CHANGELOG.md +++ b/vhost-user-backend/CHANGELOG.md @@ -2,7 +2,6 @@ ## [Unreleased] ### Added -[#206](https://github.com/rust-vmm/vhost/pull/206) Add bitmap support for tracking dirty pages during migration ### Changed @@ -10,6 +9,13 @@ ### Deprecated +## v0.14.0 + +### Added +- [[#203]](https://github.com/rust-vmm/vhost/pull/203) Add back-end's internal state migration support +- [[#218]](https://github.com/rust-vmm/vhost/pull/218) Adding POSTCOPY support +- [[#206]](https://github.com/rust-vmm/vhost/pull/206) Add bitmap support for tracking dirty pages during migration + ## v0.13.1 ### Fixed diff --git a/vhost-user-backend/Cargo.toml b/vhost-user-backend/Cargo.toml index 66672f8..c13879e 100644 --- a/vhost-user-backend/Cargo.toml +++ b/vhost-user-backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vhost-user-backend" -version = "0.13.1" +version = "0.14.0" authors = ["The Cloud Hypervisor Authors"] keywords = ["vhost-user", "virtio"] description = "A framework to build vhost-user backend service daemon"