Skip to content

Commit 0133c53

Browse files
committed
vhost: Prepare v0.11.0 release
This release adds support for live migration, adding dirty pages tracking and initial postcopy support. Signed-off-by: German Maglione <[email protected]>
1 parent 6ce9d36 commit 0133c53

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

vhost-user-backend/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ 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.10", features = ["vhost-user-backend"] }
19+
vhost = { path = "../vhost", version = "0.11", features = ["vhost-user-backend"] }
2020
virtio-bindings = "0.2.1"
2121
virtio-queue = "0.11.0"
2222
vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic"] }
2323
vmm-sys-util = "0.12.1"
2424

2525
[dev-dependencies]
2626
nix = { version = "0.28", features = ["fs"] }
27-
vhost = { path = "../vhost", version = "0.10", features = ["test-utils", "vhost-user-frontend", "vhost-user-backend"] }
27+
vhost = { path = "../vhost", version = "0.11", features = ["test-utils", "vhost-user-frontend", "vhost-user-backend"] }
2828
vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
2929
tempfile = "3.2.0"

vhost/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,20 @@
22
## [Unreleased]
33

44
### Added
5-
[#206](https://github.com/rust-vmm/vhost/pull/206) Add bitmap support for tracking dirty pages during migration
65

76
### Changed
87

98
### Fixed
109

1110
### Deprecated
1211

12+
## [0.11.0]
13+
14+
### Added
15+
- [[#203]](https://github.com/rust-vmm/vhost/pull/203) Add back-end's internal state migration support
16+
- [[#218]](https://github.com/rust-vmm/vhost/pull/218) Adding POSTCOPY support
17+
- [[#206]](https://github.com/rust-vmm/vhost/pull/206) Add bitmap support for tracking dirty pages during migration
18+
1319
## [0.10.0]
1420

1521
### Changed

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.10.0"
3+
version = "0.11.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)