Skip to content

Commit

Permalink
virtio-queue: release v0.13.0
Browse files Browse the repository at this point in the history
- Updated vm-memory from 0.14.0 to 0.15.0
- Updated virtio-bindings from 0.2.2 to 0.2.3

Signed-off-by: Manos Pitsidianakis <[email protected]>
  • Loading branch information
epilys committed Sep 10, 2024
1 parent 955c65e commit 12841a4
Show file tree
Hide file tree
Showing 8 changed files with 20 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.3" }
virtio-queue = { path = "../virtio-queue", version = "0.12.0" }
virtio-queue = { path = "../virtio-queue", version = "0.13.0" }
vm-memory = "0.15.0"

[dev-dependencies]
virtio-queue = { path = "../virtio-queue", version = "0.12.0", features = ["test-utils"] }
virtio-queue = { path = "../virtio-queue", version = "0.13.0", features = ["test-utils"] }
vm-memory = { version = "0.15.0", 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 = "0.15.0"
log = "0.4.17"
virtio-bindings = { path = "../virtio-bindings" }
virtio-queue = { path = "../virtio-queue", version = "0.12.0"}
virtio-queue = { path = "../virtio-queue", version = "0.13.0"}

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

## Changed

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

# v0.9.0

## Changed

- Updated virtio-queue from 0.11.0 to 0.12.0.

# v0.8.0
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.12.0" }
virtio-queue = { path = "../virtio-queue", version = "=0.13.0" }
vm-memory = "0.15.0"

[dev-dependencies]
virtio-queue = { path = "../virtio-queue", version = "=0.12.0", features = ["test-utils"] }
virtio-queue = { path = "../virtio-queue", version = "=0.13.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.13.0

## Changed

- Updated vm-memory from 0.14.0 to 0.15.0
- Updated virtio-bindings from 0.2.2 to 0.2.3.

# v0.12.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.12.0"
version = "0.13.0"
authors = ["The Chromium OS Authors"]
description = "virtio queue implementation"
repository = "https://github.com/rust-vmm/vm-virtio"
Expand Down
2 changes: 2 additions & 0 deletions virtio-vsock/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
## Changed

- Updated virtio-bindings from 0.2.2 to 0.2.3.
- Updated virtio-queue from 0.12.0 to 0.13.0.
- Updated vm-memory from 0.14.0 to 0.15.0.

# v0.6.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.12.0" }
virtio-queue = { path = "../virtio-queue", version = "0.13.0" }
virtio-bindings = { path = "../virtio-bindings", version = "0.2.3" }
vm-memory = "0.15.0"

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

0 comments on commit 12841a4

Please sign in to comment.