From de6cf98888959bbe5405d31255015be029d4b6ff Mon Sep 17 00:00:00 2001 From: Dorinda Bassey Date: Tue, 21 Oct 2025 17:49:45 +0200 Subject: [PATCH] sound: Prepare v0.3.0 release Update changelog and Cargo.toml to v0.3.0 Closes rust-vmm#893 Signed-off-by: Dorinda Bassey --- vhost-device-sound/CHANGELOG.md | 16 ++++++++++++++++ vhost-device-sound/Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/vhost-device-sound/CHANGELOG.md b/vhost-device-sound/CHANGELOG.md index 12bd12d..376a2cf 100644 --- a/vhost-device-sound/CHANGELOG.md +++ b/vhost-device-sound/CHANGELOG.md @@ -3,6 +3,16 @@ ### Added +### Changed + +### Fixed + +### Deprecated + +## v0.3.0 + +### Added + - [[#876]](https://github.com/rust-vmm/vhost-device/pull/876) Add GStreamer audio backend support - [[#806]](https://github.com/rust-vmm/vhost-device/pull/806) Add controls field in VirtioSoundConfig - [[#746]](https://github.com/rust-vmm/vhost-device/pull/746) Add new sampling rates 12000Hz and 24000Hz @@ -10,6 +20,12 @@ ### Changed - [[#852]](https://github.com/rust-vmm/vhost-device/pull/852) Changed to 2021 Rust edition +- [[#792]](https://github.com/rust-vmm/vhost-device/pull/792) sound: move CLI arg types to lib submodule +- [[#823]](https://github.com/rust-vmm/vhost-device/pull/823) sound: Use PathBuf for socket paths instead of Strings +- [[#789]](https://github.com/rust-vmm/vhost-device/pull/789) sound/pipewire: add truncated exp backoff to tests and fork them +- [[#788]](https://github.com/rust-vmm/vhost-device/pull/788) sound: Put AlsaTestHarness static in a LazyLock +- [[#580]](https://github.com/rust-vmm/vhost-device/pull/580) sound: use descriptor_utils.rs to manipulate requests + ### Fixed - [[#808]](https://github.com/rust-vmm/vhost-device/pull/808) pipewire: Fix rand module imports diff --git a/vhost-device-sound/Cargo.toml b/vhost-device-sound/Cargo.toml index c00c30a..a138871 100644 --- a/vhost-device-sound/Cargo.toml +++ b/vhost-device-sound/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vhost-device-sound" -version = "0.2.0" +version = "0.3.0" authors = ["Manos Pitsidianakis ", "Dorinda Bassey ", "Matias Ezequiel Vara Larsen "] description = "A virtio-sound device using the vhost-user protocol." repository = "https://github.com/rust-vmm/vhost-device"