-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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]>
- Loading branch information
Showing
8 changed files
with
16 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "virtio-queue-ser" | ||
version = "0.4.1" | ||
version = "0.5.0" | ||
authors = ["rust-vmm AWS maintainers <[email protected]>"] | ||
description = "Serialization for virtio queue state" | ||
repository = "https://github.com/rust-vmm/vm-virtio" | ||
|
@@ -14,11 +14,11 @@ 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 | ||
# We use `=0.8.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.1" } | ||
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.8.0" } | ||
vm-memory = "0.11.0" | ||
|
||
[dev-dependencies] | ||
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.7.1", features = ["test-utils"] } | ||
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.8.0", features = ["test-utils"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters