Skip to content

Commit f1e524f

Browse files
roypatandreeaflorescu
authored andcommitted
Release virtio-queue-ser 0.4.0
See rust-vmm/community#136 Signed-off-by: Patrick Roy <[email protected]>
1 parent fa43a39 commit f1e524f

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

crates/virtio-queue-ser/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# v0.4.0
2+
3+
## Added
4+
5+
- Derived `Eq` for `state::QueueStateSer`.
6+
7+
## Changed
8+
- Updated vm-memory from 0.9.0 to 0.10.0.
9+
- Updated virtio-queue from 0.6.1 to 0.7.0 and fix version to exactly 0.7.0 to ensure the crates
10+
are always updated in lock-step.
11+
- Upgrade rust edition to 2021
12+
113
# v0.3.0
214

315
## Changed

crates/virtio-queue-ser/Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "virtio-queue-ser"
3-
version = "0.3.0"
3+
version = "0.4.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,5 +14,8 @@ 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
18+
# and virtio-queue-ser releases. This is to prevent accidental changes
19+
# to the serializer output in a patch release of virtio-queue.
1720
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.7.0" }
1821
vm-memory = "0.10.0"

0 commit comments

Comments
 (0)