Skip to content

Commit c7e844c

Browse files
vhost: release v0.9.0
Release a new version with the following breaking changes: - replaced master/slave with frontend/backend in public API - replaced master/slave with frontend/backend in crate features Signed-off-by: Stefano Garzarella <[email protected]>
1 parent 1e40cf4 commit c7e844c

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

crates/vhost-user-backend/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ xen = ["vm-memory/xen", "vhost/xen"]
1414
[dependencies]
1515
libc = "0.2.39"
1616
log = "0.4.17"
17-
vhost = { path = "../vhost", version = "0.8", features = ["vhost-user-backend"] }
17+
vhost = { path = "../vhost", version = "0.9", features = ["vhost-user-backend"] }
1818
virtio-bindings = "0.2.1"
1919
virtio-queue = "0.10.0"
2020
vm-memory = { version = "0.13.1", features = ["backend-mmap", "backend-atomic"] }
2121
vmm-sys-util = "0.11.0"
2222

2323
[dev-dependencies]
2424
nix = { version = "0.27", features = ["fs"] }
25-
vhost = { path = "../vhost", version = "0.8", features = ["test-utils", "vhost-user-frontend", "vhost-user-backend"] }
25+
vhost = { path = "../vhost", version = "0.9", features = ["test-utils", "vhost-user-frontend", "vhost-user-backend"] }
2626
vm-memory = { version = "0.13.1", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
2727
tempfile = "3.2.0"

crates/vhost/CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,24 @@
44
### Added
55

66
### Changed
7-
- Change uses of master/slave for frontend/backend in the codebase.
87

98
### Fixed
109

1110
### Deprecated
1211

12+
## [0.9.0]
13+
14+
### Changed
15+
- [[#187]](https://github.com/rust-vmm/vhost/pull/187) Clean master slave
16+
- Replaced master/slave with frontend/backend in the codebase and public API.
17+
- Replaced master/slave with frontend/backend in the crate features.
18+
- Updated dependency bitflags from 1.0 to 2.4
19+
- [[#116]](https://github.com/rust-vmm/vhost/pull/116) Upgrade to 2021 edition
20+
21+
### Fixed
22+
- [[#184]](https://github.com/rust-vmm/vhost/pull/184) Safety fixes
23+
- [[#186]](https://github.com/rust-vmm/vhost/pull/186) vhost: Fix clippy warnings.
24+
1325
## [0.8.1]
1426

1527
### Fixed

crates/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.8.1"
3+
version = "0.9.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)