From 1f3b35d7ae628a99daedc1097128433f055dfcc4 Mon Sep 17 00:00:00 2001 From: Matias Ezequiel Vara Larsen Date: Mon, 15 Jul 2024 16:45:54 +0200 Subject: [PATCH] sound: Prepare v0.2.0 release Update changelog and Cargo.toml to v0.2.0 Signed-off-by: Matias Ezequiel Vara Larsen --- Cargo.lock | 2 +- vhost-device-sound/CHANGELOG.md | 15 +++++++++++++++ vhost-device-sound/Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5bce7e3a..550d4455 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1481,7 +1481,7 @@ dependencies = [ [[package]] name = "vhost-device-sound" -version = "0.1.0" +version = "0.2.0" dependencies = [ "alsa", "clap", diff --git a/vhost-device-sound/CHANGELOG.md b/vhost-device-sound/CHANGELOG.md index 9c147c55..3c353dd0 100644 --- a/vhost-device-sound/CHANGELOG.md +++ b/vhost-device-sound/CHANGELOG.md @@ -9,6 +9,21 @@ ### Deprecated +## v0.2.0 + +### Added +- [[#616]](https://github.com/rust-vmm/vhost-device/pull/616) pipewire: specify audio + channel position + +### Changed +- [[#617]](https://github.com/rust-vmm/vhost-device/pull/617) Update pipewire + dependencies to version 0.8 after the release of pipewire v0.8 + +### Fixed +- [[#599]](https://github.com/rust-vmm/vhost-device/pull/599) Fix symbolic links to license files +- [[#638]](https://github.com/rust-vmm/vhost-device/pull/638) Remove duplicate increment in pipewire +- [[#644]](https://github.com/rust-vmm/vhost-device/pull/644) Destroy pipewire streams not destroyed in pipewire + ## v0.1.0 First release with null, pipewire and alsa host audio backends. diff --git a/vhost-device-sound/Cargo.toml b/vhost-device-sound/Cargo.toml index d78a307c..d24bc2fc 100644 --- a/vhost-device-sound/Cargo.toml +++ b/vhost-device-sound/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vhost-device-sound" -version = "0.1.0" +version = "0.2.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"