Skip to content

Commit 6e4c9bd

Browse files
committed
release virtio-queue v0.6.0
Signed-off-by: Sergio Lopez <[email protected]>
1 parent 253069e commit 6e4c9bd

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

crates/devices/virtio-console/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ edition = "2021"
1313

1414
[dependencies]
1515
virtio-bindings = { path = "../../virtio-bindings", version = "0.1.0" }
16-
virtio-queue = { path = "../../virtio-queue", version = "0.5.0" }
16+
virtio-queue = { path = "../../virtio-queue", version = "0.6.0" }
1717
vm-memory = "0.9.0"

crates/devices/virtio-vsock/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ edition = "2021"
1111

1212
[dependencies]
1313
# The `path` part gets stripped when publishing the crate.
14-
virtio-queue = { path = "../../virtio-queue", version = "0.5.0" }
14+
virtio-queue = { path = "../../virtio-queue", version = "0.6.0" }
1515
virtio-bindings = { path = "../../virtio-bindings", version = "0.1.0" }
1616
vm-memory = "0.9.0"
1717

1818
[dev-dependencies]
19-
virtio-queue = { path = "../../virtio-queue", version = "0.5.0", features = ["test-utils"] }
19+
virtio-queue = { path = "../../virtio-queue", version = "0.6.0", features = ["test-utils"] }
2020
vm-memory = { version = "0.9.0", features = ["backend-mmap", "backend-atomic"] }

crates/virtio-device/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ edition = "2021"
1212
[dependencies]
1313
vm-memory = "0.9.0"
1414
log = "0.4.17"
15-
virtio-queue = { path = "../virtio-queue", version = "0.5.0"}
15+
virtio-queue = { path = "../virtio-queue", version = "0.6.0"}
1616

1717
[dev-dependencies]
1818
vm-memory = { version = "0.9.0", features = ["backend-mmap", "backend-atomic"] }

crates/virtio-queue-ser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ serde = { version = "1.0.27", features = ["derive"] }
1414
versionize = "0.1.6"
1515
versionize_derive = "0.1.3"
1616
# The `path` part gets stripped when publishing the crate.
17-
virtio-queue = { path = "../../crates/virtio-queue", version = "0.5.0" }
17+
virtio-queue = { path = "../../crates/virtio-queue", version = "0.6.0" }
1818
vm-memory = "0.9.0"

crates/virtio-queue/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# v0.6.0
2+
3+
## Added
4+
- Derive `Eq` for structures that derive `PartialEq`.
5+
6+
## Changed
7+
- Use `add_desc_chains` in tests
8+
- Update dependencies: `vm-memory` from `0.8.0` to `0.9.0` and `log` from `0.4.6` to `0.4.17`.
9+
- Upgrade to Rust 2021 edition.
10+
111
# v0.5.0
212

313
## Added

crates/virtio-queue/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "virtio-queue"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors = ["The Chromium OS Authors"]
55
description = "virtio queue implementation"
66
repository = "https://github.com/rust-vmm/vm-virtio"

0 commit comments

Comments
 (0)