-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Releases of virtio-queue and virtio-queue-ser need to happen at the same time because otherwise we won't have a corresponding compatible version in virtio-queue-ser when we release a new version of virtio-queue. Signed-off-by: Andreea Florescu <[email protected]>
- Loading branch information
1 parent
be9d270
commit 6f18c87
Showing
2 changed files
with
7 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
# v0.2.0 | ||
|
||
- Relax the dependency on `virtio-queue` so that we do not need to publish a release of this crate | ||
whenever we have a new release of `virtio-queue`. | ||
|
||
# v0.1.0 | ||
|
||
This is the first release of the crate, compatible with version `0.3.x` of `virtio-queue`. |
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.1.0" | ||
version = "0.2.0" | ||
authors = ["rust-vmm AWS maintainers <[email protected]>"] | ||
description = "Serialization for virtio queue state" | ||
repository = "https://github.com/rust-vmm/vm-virtio" | ||
|
@@ -14,5 +14,5 @@ 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. | ||
virtio-queue = { path = "../../crates/virtio-queue", version = "^0.3.0" } | ||
virtio-queue = { path = "../../crates/virtio-queue", version = ">=0.4.0" } | ||
vm-memory = ">=0.8.0" |