Skip to content

Commit 31d323e

Browse files
bchaliosstefano-garzarella
authored andcommitted
vhost: Prepare v0.14.0 release
This release: 1. Adds support for `VHOST_USER_GET_SHARED_OBJECT` 2. Fixes the reply header for an error case in POSTCOPY_ADVISE 3. `VHOST_USER_PROTOCOL_F_REPLY_ACK` is now always supported by backends 4. Bumps vm-memory to 0.16.2 and vmm-sys-util to 0.14.0 Signed-off-by: Babis Chalios <[email protected]>
1 parent 14db3cd commit 31d323e

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

vhost-user-backend/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ postcopy = ["vhost/postcopy", "userfaultfd"]
1616
libc = "0.2.39"
1717
log = "0.4.17"
1818
userfaultfd = { version = "0.8.1", optional = true }
19-
vhost = { path = "../vhost", version = "0.13.0", features = ["vhost-user-backend"] }
19+
vhost = { path = "../vhost", version = "0.14.0", features = ["vhost-user-backend"] }
2020
virtio-bindings = { workspace = true }
2121
virtio-queue = { workspace = true }
2222
vm-memory = { workspace = true, features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
@@ -25,6 +25,6 @@ vmm-sys-util = { workspace = true }
2525
[dev-dependencies]
2626
nix = { version = "0.30", features = ["fs"] }
2727
uuid = { version = "1.8.0", features=["v4"] }
28-
vhost = { path = "../vhost", version = "0.13.0", features = ["test-utils", "vhost-user-frontend", "vhost-user-backend"] }
28+
vhost = { path = "../vhost", version = "0.14.0", features = ["test-utils", "vhost-user-frontend", "vhost-user-backend"] }
2929
vm-memory = { workspace = true, features = ["backend-mmap", "backend-atomic"] }
3030
tempfile = "3.2.0"

vhost/CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Changelog
2+
23
## [Unreleased]
34

5+
### Added
6+
### Changed
7+
### Deprecated
8+
### Fixed
9+
10+
## v0.14.0
11+
412
### Added
513
- [[#268]](https://github.com/rust-vmm/vhost/pull/268) Add support for `VHOST_USER_GET_SHARED_OBJECT`
614

@@ -9,8 +17,7 @@
917
always support `VHOST_USER_PROTOCOL_F_REPLY_ACK`, without the
1018
`VhostUserBackendReqHandler` implementation having to include it in
1119
the features returned from `get_protocol_features`.
12-
13-
### Deprecated
20+
- [[#295]](https://github.com/rust-vmm/vhost/pull/295) Updated vm-memory to 0.16.2 and vmm-sys-util to 0.14.0
1421

1522
### Fixed
1623
- [[#277]](https://github.com/rust-vmm/vhost/pull/277) vhost: Fix reply header for error case in POSTCOPY_ADVISE

vhost/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vhost"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
keywords = ["vhost", "vhost-user", "virtio", "vdpa"]
55
description = "a pure rust library for vdpa, vhost and vhost-user"
66
authors = ["Liu Jiang <[email protected]>"]

0 commit comments

Comments
 (0)