Skip to content

Commit 786ac1b

Browse files
jinankjainstefano-garzarella
authored andcommitted
virtio-queue: Prepare v0.15.0 release
Fixed - Add license files. Changed - Updated virtio-bindings from 0.2.4 to 0.2.5. - Use `RawDescriptor` to represent the memory layout of the split and packed descriptor in virtio-queue/desc. - Move the split descriptor to the virtio-queue/desc. - Updated vmm-sys-util from v0.12.1 to v0.14.0 Added - Add packed descriptor in virtio-queue Signed-off-by: Jinank Jain <jinankjain@microsoft.com>
1 parent 36ce32a commit 786ac1b

File tree

8 files changed

+22
-8
lines changed

8 files changed

+22
-8
lines changed

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.5" }
16-
virtio-queue = { path = "../virtio-queue", version = "0.14.0" }
16+
virtio-queue = { path = "../virtio-queue", version = "0.15.0" }
1717
vm-memory = { workspace = true }
1818

1919
[dev-dependencies]
20-
virtio-queue = { path = "../virtio-queue", version = "0.14.0", features = ["test-utils"] }
20+
virtio-queue = { path = "../virtio-queue", version = "0.15.0", features = ["test-utils"] }
2121
vm-memory = { workspace = true, features = ["backend-mmap"] }

virtio-device/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ edition = "2021"
1313
vm-memory = { workspace = true }
1414
log = "0.4.17"
1515
virtio-bindings = { path = "../virtio-bindings" }
16-
virtio-queue = { path = "../virtio-queue", version = "0.14.0"}
16+
virtio-queue = { path = "../virtio-queue", version = "0.15.0"}
1717

1818
[dev-dependencies]
1919
vm-memory = { workspace = true, features = ["backend-mmap", "backend-atomic"] }

virtio-queue-ser/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Upcoming release
22

3+
## Changed
4+
5+
- Updated virtio-queue form 0.14.0 to 0.15.0
6+
37
## Fixed
48

59
- Add license files.

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 = "../virtio-queue", version = "=0.14.0" }
21+
virtio-queue = { path = "../virtio-queue", version = "=0.15.0" }
2222
vm-memory = { workspace = true }
2323

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

virtio-queue/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,22 @@
22

33
## Fixed
44

5+
## Changed
6+
7+
## Added
8+
9+
# v0.15.0
10+
11+
## Fixed
12+
513
- Add license files.
614

715
## Changed
816

917
- Updated virtio-bindings from 0.2.4 to 0.2.5.
1018
- Use `RawDescriptor` to represent the memory layout of the split and packed descriptor in virtio-queue/desc.
1119
- Move the split descriptor to the virtio-queue/desc.
20+
- Updated vmm-sys-util from v0.12.1 to v0.14.0
1221

1322
## Added
1423

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.14.0"
3+
version = "0.15.0"
44
authors = ["The Chromium OS Authors"]
55
description = "virtio queue implementation"
66
repository = "https://github.com/rust-vmm/vm-virtio"

virtio-vsock/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
## Changed
88

99
- Updated virtio-bindings from 0.2.4 to 0.2.5.
10+
- Updated virtio-queue from 0.14.0 to 0.15.0
1011

1112
# v0.8.0
1213

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.14.0" }
14+
virtio-queue = { path = "../virtio-queue", version = "0.15.0" }
1515
virtio-bindings = { path = "../virtio-bindings", version = "0.2.5" }
1616
vm-memory = { workspace = true }
1717

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

0 commit comments

Comments
 (0)