From 12667e87b2993b42f09b541ba45b4e32fa34c3ed Mon Sep 17 00:00:00 2001 From: Dorinda Bassey Date: Wed, 17 Dec 2025 15:58:33 +0100 Subject: [PATCH] vhost-device-gpu: Prepare v0.2.0 release Update changelog and Cargo.toml to v0.2.0 Closes rust-vmm#917 Signed-off-by: Dorinda Bassey --- Cargo.lock | 2 +- vhost-device-gpu/CHANGELOG.md | 15 +++++++++++++++ vhost-device-gpu/Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0d6926c..3430ec3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2067,7 +2067,7 @@ dependencies = [ [[package]] name = "vhost-device-gpu" -version = "0.1.0" +version = "0.2.0" dependencies = [ "assert_matches", "bitflags 2.10.0", diff --git a/vhost-device-gpu/CHANGELOG.md b/vhost-device-gpu/CHANGELOG.md index 0abc4b8..7e1e38b 100644 --- a/vhost-device-gpu/CHANGELOG.md +++ b/vhost-device-gpu/CHANGELOG.md @@ -5,11 +5,26 @@ ### Changed +### Fixed + +### Deprecated + +## v0.2.0 + +### Added + +- [[#867]] (https://github.com/rust-vmm/vhost-device/pull/867) vhost-device-gpu: adds support for VHOST_USER_GPU_DMABUF_SCANOUT + +### Changed + - [[#916]] (https://github.com/rust-vmm/vhost-device/pull/916) vhost-device-gpu: Adapt to updated virglrenderer API - [[#852]] (https://github.com/rust-vmm/vhost-device/pull/890) vhost-device-gpu: Refactor vhost-device-gpu +- [[#878]] (https://github.com/rust-vmm/vhost-device/pull/878) chore(vhost-device-gpu): bump rutabaga_gfx to 0.1.71 with API updates ### Fixed +- [[#872]] (https://github.com/rust-vmm/vhost-device/pull/872) Various --no-default-feature fixups and cosmetics for the readme + ### Deprecated ## v0.1.0 diff --git a/vhost-device-gpu/Cargo.toml b/vhost-device-gpu/Cargo.toml index 2c779bf..6108c73 100644 --- a/vhost-device-gpu/Cargo.toml +++ b/vhost-device-gpu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vhost-device-gpu" -version = "0.1.0" +version = "0.2.0" authors = ["Dorinda Bassey ", "Matej Hrica "] description = "A virtio-gpu device using the vhost-user protocol." repository = "https://github.com/rust-vmm/vhost-device"