From 1e6667fbba428f3bfc6c3980596dd03e4894b068 Mon Sep 17 00:00:00 2001 From: Dorinda Bassey Date: Mon, 22 Jul 2024 16:40:49 +0200 Subject: [PATCH] vsock: Prepare version 0.2.0 release Update changelog and Cargo.toml to version 0.2.0 Closes #688 Signed-off-by: Dorinda Bassey --- Cargo.lock | 2 +- vhost-device-vsock/CHANGELOG.md | 24 ++++++++++++++++++++++++ vhost-device-vsock/Cargo.toml | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 225ee819..6a4e0f99 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1492,7 +1492,7 @@ dependencies = [ [[package]] name = "vhost-device-vsock" -version = "0.1.0" +version = "0.2.0" dependencies = [ "assert_matches", "byteorder", diff --git a/vhost-device-vsock/CHANGELOG.md b/vhost-device-vsock/CHANGELOG.md index 51d3f040..c1344e2a 100644 --- a/vhost-device-vsock/CHANGELOG.md +++ b/vhost-device-vsock/CHANGELOG.md @@ -9,6 +9,30 @@ ### Deprecated +## [0.2.0] + +### Added +- [[#406]](https://github.com/rust-vmm/vhost-device/pull/406) Add VM groups in sibling communication +- [[#526]](https://github.com/rust-vmm/vhost-device/pull/526) increase test coverage + +### Changed +- [[#434]](https://github.com/rust-vmm/vhost-device/pull/434) Don't allow duplicate CIDs +- [[#450]](https://github.com/rust-vmm/vhost-device/pull/450) refactor VhostUserVsockThread worker +- [[#451]](https://github.com/rust-vmm/vhost-device/pull/451) remove unused feature to reduce deps +- [[#587]](https://github.com/rust-vmm/vhost-device/pull/587) update serde_yaml dependency +- [[#672]](https://github.com/rust-vmm/vhost-device/pull/672) simplify the examples using memfd +- [[#679]](https://github.com/rust-vmm/vhost-device/pull/679) increase max queue size to 1024 + +### Fixed +- [[#409]](https://github.com/rust-vmm/vhost-device/pull/409) Increase NUM_QUEUES to 3 +- [[#410]](https://github.com/rust-vmm/vhost-device/pull/410) always epoll_register with cloned stream fd +- [[#499]](https://github.com/rust-vmm/vhost-device/pull/499) avoid circular references +- [[#506]](https://github.com/rust-vmm/vhost-device/pull/506) try epoll_modify before epoll_register in recv_pkt +- [[#531]](https://github.com/rust-vmm/vhost-device/pull/531) fix intermittent failures +- [[#641]](https://github.com/rust-vmm/vhost-device/pull/641) Use a patched version for the config dependency +- [[#663]](https://github.com/rust-vmm/vhost-device/pull/663) check if we get '\n' early while reading from socket +- [[#691]](https://github.com/rust-vmm/vhost-device/pull/691) Replace the config Crate with figment + ## [0.1.0] First release diff --git a/vhost-device-vsock/Cargo.toml b/vhost-device-vsock/Cargo.toml index d5d64fff..2649093d 100644 --- a/vhost-device-vsock/Cargo.toml +++ b/vhost-device-vsock/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vhost-device-vsock" -version = "0.1.0" +version = "0.2.0" authors = ["Harshavardhan Unnibhavi ", "Stefano Garzarella "] description = "A virtio-vsock device using the vhost-user protocol." repository = "https://github.com/rust-vmm/vhost-device"