Skip to content

Commit

Permalink
vhost: prepare v0.12.1 release
Browse files Browse the repository at this point in the history
Remove the gpu-socket feature just introduced, since it doesn't work
well with cargo feature unification.

Signed-off-by: Stefano Garzarella <[email protected]>
  • Loading branch information
stefano-garzarella committed Oct 25, 2024
1 parent 56a374c commit c5fb10c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions vhost-user-backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ postcopy = ["vhost/postcopy", "userfaultfd"]
libc = "0.2.39"
log = "0.4.17"
userfaultfd = { version = "0.8.1", optional = true }
vhost = { path = "../vhost", version = "0.12", features = ["vhost-user-backend"] }
vhost = { path = "../vhost", version = "0.12.1", features = ["vhost-user-backend"] }
virtio-bindings = { workspace = true }
virtio-queue = { workspace = true }
vm-memory = { workspace = true, features = ["backend-mmap", "backend-atomic", "backend-bitmap"] }
vmm-sys-util = { workspace = true }

[dev-dependencies]
nix = { version = "0.29", features = ["fs"] }
vhost = { path = "../vhost", version = "0.12", features = ["test-utils", "vhost-user-frontend", "vhost-user-backend"] }
vhost = { path = "../vhost", version = "0.12.1", features = ["test-utils", "vhost-user-frontend", "vhost-user-backend"] }
vm-memory = { workspace = true, features = ["backend-mmap", "backend-atomic"] }
tempfile = "3.2.0"
4 changes: 4 additions & 0 deletions vhost/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@

### Deprecated

### Fixed

## [0.12.1]

### Fixed
- [[#267](https://github.com/rust-vmm/vhost/pull/267)] Fix feature unification issues with gpu-socket feature.

Expand Down
2 changes: 1 addition & 1 deletion vhost/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vhost"
version = "0.12.0"
version = "0.12.1"
keywords = ["vhost", "vhost-user", "virtio", "vdpa"]
description = "a pure rust library for vdpa, vhost and vhost-user"
authors = ["Liu Jiang <[email protected]>"]
Expand Down

0 comments on commit c5fb10c

Please sign in to comment.