Skip to content

Commit 7241d16

Browse files
Erik Schillingandreeaflorescu
authored andcommitted
virtio-queue: Release 0.9.1
Minor release since, while dependencies got updated, nothing should be a user-visible change. Signed-off-by: Erik Schilling <[email protected]>
1 parent 623207c commit 7241d16

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

crates/devices/virtio-console/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ edition = "2021"
1313

1414
[dependencies]
1515
virtio-bindings = { path = "../../virtio-bindings", version = "0.2.2" }
16-
virtio-queue = { path = "../../virtio-queue", version = "0.9.0" }
16+
virtio-queue = { path = "../../virtio-queue", version = "0.9.1" }
1717
vm-memory = "0.13.1"
1818

1919
[dev-dependencies]
20-
virtio-queue = { path = "../../virtio-queue", version = "0.9.0", features = ["test-utils"] }
20+
virtio-queue = { path = "../../virtio-queue", version = "0.9.1", features = ["test-utils"] }
2121
vm-memory = { version = "0.13.1", features = ["backend-mmap"] }

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.9.0" }
14+
virtio-queue = { path = "../../virtio-queue", version = "0.9.1" }
1515
virtio-bindings = { path = "../../virtio-bindings", version = "0.2.2" }
1616
vm-memory = "0.13.1"
1717

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

crates/virtio-queue-ser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ versionize_derive = "0.1.3"
1818
# 1:1-relationship between virtio-queue and virtio-queue-ser releases. This is
1919
# to prevent accidental changes to the serializer output in a patch release of
2020
# virtio-queue.
21-
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.9.0" }
21+
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.9.1" }
2222
vm-memory = "0.13.1"
2323

2424
[dev-dependencies]
25-
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.9.0", features = ["test-utils"] }
25+
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.9.1", features = ["test-utils"] }

crates/virtio-queue/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# Upcoming
2+
3+
# v0.9.1
4+
5+
## Changed
6+
- Updated vm-memory from 0.12.0 to 0.13.1.
7+
- Updated dev-dependencies:
8+
- criterion (0.3.0 -> 0.5.1)
9+
- memoffset (0.7.1 -> 0.9.0)
10+
111
# v0.9.0
212

313
## Changed

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.9.0"
3+
version = "0.9.1"
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)