Skip to content

Commit

Permalink
virtio-queue: Prepare v0.14.0 release
Browse files Browse the repository at this point in the history
Update virtio-queue from v0.13.0 to v0.14.0:
    - Update vm-memory from 0.15.0 to 0.16.0
    - Update virtio-bindings from 0.2.3 to 0.2.4

Signed-off-by: Ruoqing He <[email protected]>
  • Loading branch information
TimePrinciple authored and stefano-garzarella committed Oct 21, 2024
1 parent cee1e6f commit 6724256
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 8 deletions.
4 changes: 2 additions & 2 deletions virtio-console/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ edition = "2021"

[dependencies]
virtio-bindings = { path = "../virtio-bindings", version = "0.2.4" }
virtio-queue = { path = "../virtio-queue", version = "0.13.0" }
virtio-queue = { path = "../virtio-queue", version = "0.14.0" }
vm-memory = { workspace = true }

[dev-dependencies]
virtio-queue = { path = "../virtio-queue", version = "0.13.0", features = ["test-utils"] }
virtio-queue = { path = "../virtio-queue", version = "0.14.0", features = ["test-utils"] }
vm-memory = { workspace = true, features = ["backend-mmap"] }
2 changes: 1 addition & 1 deletion virtio-device/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition = "2021"
vm-memory = { workspace = true }
log = "0.4.17"
virtio-bindings = { path = "../virtio-bindings" }
virtio-queue = { path = "../virtio-queue", version = "0.13.0"}
virtio-queue = { path = "../virtio-queue", version = "0.14.0"}

[dev-dependencies]
vm-memory = { workspace = true, features = ["backend-mmap", "backend-atomic"] }
5 changes: 5 additions & 0 deletions virtio-queue-ser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Upcoming release

## Changed

- Updated vm-memory from 0.15.0 to 0.16.0.
- Updated virtio-queue from 0.13.0 to 0.14.0.

# v0.10.0

## Changed
Expand Down
4 changes: 2 additions & 2 deletions virtio-queue-ser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ versionize_derive = "0.1.3"
# 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 = "../virtio-queue", version = "=0.13.0" }
virtio-queue = { path = "../virtio-queue", version = "=0.14.0" }
vm-memory = { workspace = true }

[dev-dependencies]
virtio-queue = { path = "../virtio-queue", version = "=0.13.0", features = ["test-utils"] }
virtio-queue = { path = "../virtio-queue", version = "=0.14.0", features = ["test-utils"] }
3 changes: 3 additions & 0 deletions virtio-queue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# Upcoming

# v0.14.0

## Changed

- Updated vm-memory from 0.15.0 to 0.16.0
- Updated virtio-bindings from 0.2.3 to 0.2.4.

# v0.13.0
Expand Down
2 changes: 1 addition & 1 deletion virtio-queue/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "virtio-queue"
version = "0.13.0"
version = "0.14.0"
authors = ["The Chromium OS Authors"]
description = "virtio queue implementation"
repository = "https://github.com/rust-vmm/vm-virtio"
Expand Down
1 change: 1 addition & 0 deletions virtio-vsock/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Changed

- Updated virtio-bindings from 0.2.3 to 0.2.4.
- Updated virtio-queue from 0.13.0 to 0.14.0.

# v0.7.0

Expand Down
4 changes: 2 additions & 2 deletions virtio-vsock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ edition = "2021"

[dependencies]
# The `path` part gets stripped when publishing the crate.
virtio-queue = { path = "../virtio-queue", version = "0.13.0" }
virtio-queue = { path = "../virtio-queue", version = "0.14.0" }
virtio-bindings = { path = "../virtio-bindings", version = "0.2.4" }
vm-memory = { workspace = true }

[dev-dependencies]
virtio-queue = { path = "../virtio-queue", version = "0.13.0", features = ["test-utils"] }
virtio-queue = { path = "../virtio-queue", version = "0.14.0", features = ["test-utils"] }
vm-memory = { workspace = true, features = ["backend-mmap", "backend-atomic"] }

0 comments on commit 6724256

Please sign in to comment.