vsock: Prepare version 0.3.0 release

Update changelog and Cargo.toml to version 0.3.0

Closes #860

Signed-off-by: Dorinda Bassey <dbassey@redhat.com>
This commit is contained in:
Dorinda Bassey 2025-08-05 17:49:41 +02:00 committed by Stefano Garzarella
parent b232e96586
commit 4fe41e353a
3 changed files with 17 additions and 7 deletions

2
Cargo.lock generated
View File

@ -2173,7 +2173,7 @@ dependencies = [
[[package]]
name = "vhost-device-vsock"
version = "0.2.0"
version = "0.3.0"
dependencies = [
"assert_matches",
"byteorder",

View File

@ -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

View File

@ -1,6 +1,6 @@
[package]
name = "vhost-device-vsock"
version = "0.2.0"
version = "0.3.0"
authors = ["Harshavardhan Unnibhavi <harshanavkis@gmail.com>", "Stefano Garzarella <sgarzare@redhat.com>"]
description = "A virtio-vsock device using the vhost-user protocol."
repository = "https://github.com/rust-vmm/vhost-device"