Skip to content

Commit

Permalink
Release virtio-queue-ser 0.4.0
Browse files Browse the repository at this point in the history
See rust-vmm/community#136

Signed-off-by: Patrick Roy <roypat@amazon.co.uk>
  • Loading branch information
roypat committed Nov 14, 2022
1 parent 1b5fa74 commit 38cef47
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
12 changes: 12 additions & 0 deletions crates/virtio-queue-ser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# v0.4.0

## Added

- Derived `Eq` for `state::QueueStateSer`.

## Changed
- Updated vm-memory from 0.9.0 to 0.10.0.
- Updated virtio-queue from 0.6.1 to 0.7.0 and fix version to exactly 0.7.0 to ensure the crates
are always updated in lock-step.
- Upgrade rust edition to 2021

# v0.3.0

## Changed
Expand Down
5 changes: 4 additions & 1 deletion crates/virtio-queue-ser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "virtio-queue-ser"
version = "0.3.0"
version = "0.4.0"
authors = ["rust-vmm AWS maintainers <rust-vmm-maintainers@amazon.com>"]
description = "Serialization for virtio queue state"
repository = "https://github.com/rust-vmm/vm-virtio"
Expand All @@ -14,5 +14,8 @@ serde = { version = "1.0.27", features = ["derive"] }
versionize = "0.1.6"
versionize_derive = "0.1.3"
# The `path` part gets stripped when publishing the crate.
# We use `=0.7.0` as we maintain a 1:1-relationship between virtio-queue
# and virtio-queue-ser releases. This is to prevent accidental changes
# to the serializer output in a patch release of virtio-queue.
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.7.0" }
vm-memory = "0.10.0"

0 comments on commit 38cef47

Please sign in to comment.