Skip to content

Commit 75f7ad2

Browse files
wllenyjandreeaflorescu
authored andcommitted
vhost-user-backend: release v0.8.0
Signed-off-by: wanglei01 <[email protected]>
1 parent 313de9b commit 75f7ad2

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

crates/vhost-user-backend/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@
99

1010
### Deprecated
1111

12+
## v0.8.0
13+
14+
### Added
15+
- [#120](https://github.com/rust-vmm/vhost/pull/120): vhost_kern: vdpa: Add missing ioctls
16+
17+
### Changed
18+
- Updated dependency vhost 0.5 -> 0.6
19+
- Updated dependency virtio-queue 0.6 -> 0.7.0
20+
- Updated depepdency vm-memory 0.9 to 0.10.0
21+
- Updated depepdency vmm-sys-util 0.10 to 0.11.0
22+
1223
## v0.7.0
1324

1425
### Changed

crates/vhost-user-backend/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "vhost-user-backend"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = ["The Cloud Hypervisor Authors"]
55
keywords = ["vhost-user", "virtio"]
66
description = "A framework to build vhost-user backend service daemon"
@@ -10,14 +10,14 @@ license = "Apache-2.0"
1010
[dependencies]
1111
libc = "0.2.39"
1212
log = "0.4.17"
13-
vhost = { path = "../vhost", version = "0.5", features = ["vhost-user-slave"] }
13+
vhost = { path = "../vhost", version = "0.6", features = ["vhost-user-slave"] }
1414
virtio-bindings = "0.1.0"
1515
virtio-queue = "0.7.0"
1616
vm-memory = { version = "0.10.0", features = ["backend-mmap", "backend-atomic"] }
1717
vmm-sys-util = "0.11.0"
1818

1919
[dev-dependencies]
2020
nix = "0.25"
21-
vhost = { path = "../vhost", version = "0.5", features = ["vhost-user-master", "vhost-user-slave"] }
21+
vhost = { path = "../vhost", version = "0.6", features = ["vhost-user-master", "vhost-user-slave"] }
2222
vm-memory = { version = "0.10.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
2323
tempfile = "3.2.0"

0 commit comments

Comments
 (0)