Skip to content

Commit

Permalink
virtio-queue: release v0.12.0
Browse files Browse the repository at this point in the history
This release contains the new `Reader`/`Writer` classes to iterate
over descriptors.

Signed-off-by: Stefano Garzarella <[email protected]>
  • Loading branch information
stefano-garzarella committed Mar 25, 2024
1 parent 563ac82 commit 9a29195
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
4 changes: 2 additions & 2 deletions virtio-console/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
2 changes: 1 addition & 1 deletion virtio-device/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
4 changes: 2 additions & 2 deletions virtio-queue-ser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
5 changes: 5 additions & 0 deletions virtio-queue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Upcoming

# v0.12.0

## Added
- `Reader`/`Writer` classes to iterate over descriptors

# v0.11.0

## Changed
Expand Down
2 changes: 1 addition & 1 deletion virtio-queue/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions virtio-vsock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

0 comments on commit 9a29195

Please sign in to comment.