From 4fe41e353a005b1b7163f3f38efde3523f3b160c Mon Sep 17 00:00:00 2001 From: Dorinda Bassey Date: Tue, 5 Aug 2025 17:49:41 +0200 Subject: [PATCH] vsock: Prepare version 0.3.0 release Update changelog and Cargo.toml to version 0.3.0 Closes #860 Signed-off-by: Dorinda Bassey --- Cargo.lock | 2 +- vhost-device-vsock/CHANGELOG.md | 20 +++++++++++++++----- vhost-device-vsock/Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f708b3a..b59f938 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2173,7 +2173,7 @@ dependencies = [ [[package]] name = "vhost-device-vsock" -version = "0.2.0" +version = "0.3.0" dependencies = [ "assert_matches", "byteorder", diff --git a/vhost-device-vsock/CHANGELOG.md b/vhost-device-vsock/CHANGELOG.md index 8a7a304..a2aa52a 100644 --- a/vhost-device-vsock/CHANGELOG.md +++ b/vhost-device-vsock/CHANGELOG.md @@ -2,18 +2,28 @@ ## Unreleased ### Added -- [#755](https://github.com/rust-vmm/vhost-device/pull/755) Advertise `VhostUserProtocolFeatures::MQ` protocol feature -- [#698](https://github.com/rust-vmm/vhost-device/pull/698) vsock: add mdoc page -- [#706](https://github.com/rust-vmm/vhost-device/pull/706) Support proxying using vsock ### Changed ### Fixed -- [#800](https://github.com/rust-vmm/vhost-device/pull/800) Disable EPOLLOUT if triggered while txbuf is empty -- [#838](https://github.com/rust-vmm/vhost-device/pull/838) Fix handling of data in the tx queue ### Deprecated +## v0.3.0 + +### Added +- [#698](https://github.com/rust-vmm/vhost-device/pull/698) vsock: add mdoc page +- [#706](https://github.com/rust-vmm/vhost-device/pull/706) Support proxying using vsock +- [#755](https://github.com/rust-vmm/vhost-device/pull/755) Advertise `VhostUserProtocolFeatures::MQ` protocol feature +- [#790](https://github.com/rust-vmm/vhost-device/pull/790) vsock/tests: clarify the vsock_loopback requirement + +### Changed +- [#819](https://github.com/rust-vmm/vhost-device/pull/819) vsock: Use PathBuf for socket paths instead of Strings + +### Fixed +- [#800](https://github.com/rust-vmm/vhost-device/pull/800) Disable EPOLLOUT if triggered while txbuf is empty +- [#838](https://github.com/rust-vmm/vhost-device/pull/838) Fix handling of data in the tx queue + ## v0.2.0 ### Added diff --git a/vhost-device-vsock/Cargo.toml b/vhost-device-vsock/Cargo.toml index b361b0c..08af7e0 100644 --- a/vhost-device-vsock/Cargo.toml +++ b/vhost-device-vsock/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vhost-device-vsock" -version = "0.2.0" +version = "0.3.0" authors = ["Harshavardhan Unnibhavi ", "Stefano Garzarella "] description = "A virtio-vsock device using the vhost-user protocol." repository = "https://github.com/rust-vmm/vhost-device"