From 12841a472514a970a7b53c2e4e06367712bd6d4a Mon Sep 17 00:00:00 2001 From: Manos Pitsidianakis Date: Tue, 10 Sep 2024 14:20:55 +0300 Subject: [PATCH] virtio-queue: release v0.13.0 - 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 --- virtio-console/Cargo.toml | 4 ++-- virtio-device/Cargo.toml | 2 +- virtio-queue-ser/CHANGELOG.md | 7 +++++++ virtio-queue-ser/Cargo.toml | 4 ++-- virtio-queue/CHANGELOG.md | 3 +++ virtio-queue/Cargo.toml | 2 +- virtio-vsock/CHANGELOG.md | 2 ++ virtio-vsock/Cargo.toml | 4 ++-- 8 files changed, 20 insertions(+), 8 deletions(-) diff --git a/virtio-console/Cargo.toml b/virtio-console/Cargo.toml index f173e7a4..2db0b52a 100644 --- a/virtio-console/Cargo.toml +++ b/virtio-console/Cargo.toml @@ -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"] } diff --git a/virtio-device/Cargo.toml b/virtio-device/Cargo.toml index 0ec50bf5..ebe470f3 100644 --- a/virtio-device/Cargo.toml +++ b/virtio-device/Cargo.toml @@ -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"] } diff --git a/virtio-queue-ser/CHANGELOG.md b/virtio-queue-ser/CHANGELOG.md index 26035a77..29b5a723 100644 --- a/virtio-queue-ser/CHANGELOG.md +++ b/virtio-queue-ser/CHANGELOG.md @@ -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 diff --git a/virtio-queue-ser/Cargo.toml b/virtio-queue-ser/Cargo.toml index 9932ba95..89dd5503 100644 --- a/virtio-queue-ser/Cargo.toml +++ b/virtio-queue-ser/Cargo.toml @@ -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"] } diff --git a/virtio-queue/CHANGELOG.md b/virtio-queue/CHANGELOG.md index e4625603..5ef390ba 100644 --- a/virtio-queue/CHANGELOG.md +++ b/virtio-queue/CHANGELOG.md @@ -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 diff --git a/virtio-queue/Cargo.toml b/virtio-queue/Cargo.toml index 613ce003..0ee38e66 100644 --- a/virtio-queue/Cargo.toml +++ b/virtio-queue/Cargo.toml @@ -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" diff --git a/virtio-vsock/CHANGELOG.md b/virtio-vsock/CHANGELOG.md index 5db03d1a..2ced43a0 100644 --- a/virtio-vsock/CHANGELOG.md +++ b/virtio-vsock/CHANGELOG.md @@ -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 diff --git a/virtio-vsock/Cargo.toml b/virtio-vsock/Cargo.toml index 2fb3b5ff..291ebe3b 100644 --- a/virtio-vsock/Cargo.toml +++ b/virtio-vsock/Cargo.toml @@ -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"] }