Skip to content

Commit de8cd34

Browse files
slplauralt
authored andcommitted
virtio-queue-0.8.0 and virtio-queue-ser-0.5.0
Set up the stage for releasing virtio-queue-0.8.0 by updating the version in the crate and all its references across the workspace. Also get ready to release virtio-queue-ser-0.5.0, as it seems we want to always keep them in sync. Signed-off-by: Sergio Lopez <[email protected]>
1 parent 0fa0e06 commit de8cd34

File tree

8 files changed

+16
-10
lines changed

8 files changed

+16
-10
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.0" }
16-
virtio-queue = { path = "../../virtio-queue", version = "0.7.0" }
16+
virtio-queue = { path = "../../virtio-queue", version = "0.8.0" }
1717
vm-memory = "0.11.0"
1818

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

crates/devices/virtio-vsock/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Changes
44

55
- Updated vm-memory from 0.10.0 to 0.11.0.
6+
- Updated virtio-queue from 0.7.0 to 0.8.0.
67

78
# v0.2.1
89

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.7.0" }
14+
virtio-queue = { path = "../../virtio-queue", version = "0.8.0" }
1515
virtio-bindings = { path = "../../virtio-bindings", version = "0.2.0" }
1616
vm-memory = "0.11.0"
1717

1818
[dev-dependencies]
19-
virtio-queue = { path = "../../virtio-queue", version = "0.7.0", features = ["test-utils"] }
19+
virtio-queue = { path = "../../virtio-queue", version = "0.8.0", features = ["test-utils"] }
2020
vm-memory = { version = "0.11.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
@@ -13,7 +13,7 @@ edition = "2021"
1313
vm-memory = "0.11.0"
1414
log = "0.4.17"
1515
virtio-bindings = { path = "../virtio-bindings" }
16-
virtio-queue = { path = "../virtio-queue", version = "0.7.0"}
16+
virtio-queue = { path = "../virtio-queue", version = "0.8.0"}
1717

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

crates/virtio-queue-ser/CHANGELOG.md

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

3+
# v0.5.0
4+
35
## Changed
46

57
- Updated vm-memory from 0.10.0 to 0.11.0.
8+
- Updated virtio-queue from 0.7.1 to 0.8.0.
69

710
# v0.4.1
811
- Update the virtio-queue dependency to v0.7.1. This release contains no

crates/virtio-queue-ser/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "virtio-queue-ser"
3-
version = "0.4.1"
3+
version = "0.5.0"
44
authors = ["rust-vmm AWS maintainers <[email protected]>"]
55
description = "Serialization for virtio queue state"
66
repository = "https://github.com/rust-vmm/vm-virtio"
@@ -14,11 +14,11 @@ 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-
# We use `=0.7.0` as we maintain a 1:1-relationship between virtio-queue
17+
# We use `=0.8.0` as we maintain a 1:1-relationship between virtio-queue
1818
# and virtio-queue-ser releases. This is to prevent accidental changes
1919
# to the serializer output in a patch release of virtio-queue.
20-
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.7.1" }
20+
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.8.0" }
2121
vm-memory = "0.11.0"
2222

2323
[dev-dependencies]
24-
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.7.1", features = ["test-utils"] }
24+
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.8.0", features = ["test-utils"] }

crates/virtio-queue/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Upcoming Release
22

3+
# v0.8.0
4+
35
## Changed
46
- Terminate iterating descriptor chains that are longer than 2^32 bytes.
57
- Updated vm-memory from 0.10.0 to 0.11.0.

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.7.1"
3+
version = "0.8.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)