From 08539cf701883d5438b260d4dfa50e0b8e6c3305 Mon Sep 17 00:00:00 2001 From: Milan Zamazal Date: Tue, 2 Sep 2025 14:17:02 +0200 Subject: [PATCH] scmi: Prepare v0.4.0 release Update CHANGELOG.md and Cargo.toml for v0.4.0 release. This release adds SCMI extended sensor attributes support. Signed-off-by: Milan Zamazal --- Cargo.lock | 2 +- vhost-device-scmi/CHANGELOG.md | 14 ++++++++++---- vhost-device-scmi/Cargo.toml | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e3f9753..14d51ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2076,7 +2076,7 @@ dependencies = [ [[package]] name = "vhost-device-scmi" -version = "0.3.0" +version = "0.4.0" dependencies = [ "assert_matches", "clap", diff --git a/vhost-device-scmi/CHANGELOG.md b/vhost-device-scmi/CHANGELOG.md index 626dec6..fdbab01 100644 --- a/vhost-device-scmi/CHANGELOG.md +++ b/vhost-device-scmi/CHANGELOG.md @@ -3,16 +3,22 @@ ### Added -- [[#798]](https://github.com/rust-vmm/vhost-device/pull/798) scmi: extended sensor attributes support - ### Changed ### Fixed -- [[#798]](https://github.com/rust-vmm/vhost-device/pull/798) Fix the wrong value number of remaining sensor axis descriptor. - ### Deprecated +## v0.4.0 + +### Added + +- [[#798]](https://github.com/rust-vmm/vhost-device/pull/798) scmi: extended sensor attributes support + +### Fixed + +- [[#798]](https://github.com/rust-vmm/vhost-device/pull/798) Fix the wrong value number of remaining sensor axis descriptor. + ## v0.3.0 ### Added diff --git a/vhost-device-scmi/Cargo.toml b/vhost-device-scmi/Cargo.toml index 83de800..e3f051d 100644 --- a/vhost-device-scmi/Cargo.toml +++ b/vhost-device-scmi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vhost-device-scmi" -version = "0.3.0" +version = "0.4.0" authors = ["Milan Zamazal "] description = "vhost-user SCMI backend device" repository = "https://github.com/rust-vmm/vhost-device"