diff --git a/virtio-console/Cargo.toml b/virtio-console/Cargo.toml index bd40c9b1..f0f01563 100644 --- a/virtio-console/Cargo.toml +++ b/virtio-console/Cargo.toml @@ -13,9 +13,9 @@ edition = "2021" [dependencies] virtio-bindings = { path = "../virtio-bindings", version = "0.2.2" } -virtio-queue = { path = "../virtio-queue", version = "0.11.0" } +virtio-queue = { path = "../virtio-queue", version = "0.12.0" } vm-memory = "0.14.0" [dev-dependencies] -virtio-queue = { path = "../virtio-queue", version = "0.11.0", features = ["test-utils"] } +virtio-queue = { path = "../virtio-queue", version = "0.12.0", features = ["test-utils"] } vm-memory = { version = "0.14.0", features = ["backend-mmap"] } diff --git a/virtio-device/Cargo.toml b/virtio-device/Cargo.toml index 55b398ab..840dd8d6 100644 --- a/virtio-device/Cargo.toml +++ b/virtio-device/Cargo.toml @@ -13,7 +13,7 @@ edition = "2021" vm-memory = "0.14.0" log = "0.4.17" virtio-bindings = { path = "../virtio-bindings" } -virtio-queue = { path = "../virtio-queue", version = "0.11.0"} +virtio-queue = { path = "../virtio-queue", version = "0.12.0"} [dev-dependencies] vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic"] } diff --git a/virtio-queue-ser/Cargo.toml b/virtio-queue-ser/Cargo.toml index a27304fa..4c803ea8 100644 --- a/virtio-queue-ser/Cargo.toml +++ b/virtio-queue-ser/Cargo.toml @@ -18,8 +18,8 @@ versionize_derive = "0.1.3" # 1:1-relationship between virtio-queue and virtio-queue-ser releases. This is # to prevent accidental changes to the serializer output in a patch release of # virtio-queue. -virtio-queue = { path = "../virtio-queue", version = "=0.11.0" } +virtio-queue = { path = "../virtio-queue", version = "=0.12.0" } vm-memory = "0.14.0" [dev-dependencies] -virtio-queue = { path = "../virtio-queue", version = "=0.11.0", features = ["test-utils"] } +virtio-queue = { path = "../virtio-queue", version = "=0.12.0", features = ["test-utils"] } diff --git a/virtio-queue/CHANGELOG.md b/virtio-queue/CHANGELOG.md index 68155524..78fd28f5 100644 --- a/virtio-queue/CHANGELOG.md +++ b/virtio-queue/CHANGELOG.md @@ -1,5 +1,10 @@ # Upcoming +# v0.12.0 + +## Added +- `Reader`/`Writer` classes to iterate over descriptors + # v0.11.0 ## Changed diff --git a/virtio-queue/Cargo.toml b/virtio-queue/Cargo.toml index 15fdbc39..68d3cef8 100644 --- a/virtio-queue/Cargo.toml +++ b/virtio-queue/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "virtio-queue" -version = "0.11.0" +version = "0.12.0" authors = ["The Chromium OS Authors"] description = "virtio queue implementation" repository = "https://github.com/rust-vmm/vm-virtio" diff --git a/virtio-vsock/Cargo.toml b/virtio-vsock/Cargo.toml index 36a8dde2..3c797cad 100644 --- a/virtio-vsock/Cargo.toml +++ b/virtio-vsock/Cargo.toml @@ -11,10 +11,10 @@ edition = "2021" [dependencies] # The `path` part gets stripped when publishing the crate. -virtio-queue = { path = "../virtio-queue", version = "0.11.0" } +virtio-queue = { path = "../virtio-queue", version = "0.12.0" } virtio-bindings = { path = "../virtio-bindings", version = "0.2.2" } vm-memory = "0.14.0" [dev-dependencies] -virtio-queue = { path = "../virtio-queue", version = "0.11.0", features = ["test-utils"] } +virtio-queue = { path = "../virtio-queue", version = "0.12.0", features = ["test-utils"] } vm-memory = { version = "0.14.0", features = ["backend-mmap", "backend-atomic"] }