Skip to content

Commit 9ac9e3e

Browse files
Erik Schillingandreeaflorescu
authored andcommitted
virtio-bindings: Release 0.2.2
This is a minor release since no definitions were changed or deleted. Only new fields got added. Signed-off-by: Erik Schilling <[email protected]>
1 parent 07c5d38 commit 9ac9e3e

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-6
lines changed

crates/devices/virtio-blk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ vmm-sys-util = "0.11.0"
1818
log = "0.4.17"
1919
virtio-queue = { path = "../../virtio-queue" }
2020
virtio-device = { path = "../../virtio-device" }
21-
virtio-bindings = { path = "../../virtio-bindings", version = "0.2.1" }
21+
virtio-bindings = { path = "../../virtio-bindings", version = "0.2.2" }
2222

2323
[dev-dependencies]
2424
vm-memory = { version = "0.13.1", features = ["backend-mmap", "backend-atomic"] }

crates/devices/virtio-console/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ edition = "2021"
1212

1313

1414
[dependencies]
15-
virtio-bindings = { path = "../../virtio-bindings", version = "0.2.1" }
15+
virtio-bindings = { path = "../../virtio-bindings", version = "0.2.2" }
1616
virtio-queue = { path = "../../virtio-queue", version = "0.9.0" }
1717
vm-memory = "0.13.1"
1818

crates/devices/virtio-vsock/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ edition = "2021"
1212
[dependencies]
1313
# The `path` part gets stripped when publishing the crate.
1414
virtio-queue = { path = "../../virtio-queue", version = "0.9.0" }
15-
virtio-bindings = { path = "../../virtio-bindings", version = "0.2.1" }
15+
virtio-bindings = { path = "../../virtio-bindings", version = "0.2.2" }
1616
vm-memory = "0.13.1"
1717

1818
[dev-dependencies]

crates/virtio-bindings/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# Upcoming Release
22

3-
- Regenerate bindings with Linux 6.4.
3+
# v0.2.2
4+
5+
## Added
6+
47
- Added bindings for virtio_ids.h
8+
- Regenerate bindings with Linux 6.4.
59

610
# v0.2.1
711

crates/virtio-bindings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "virtio-bindings"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
authors = ["Sergio Lopez <[email protected]>"]
55
description = "Rust FFI bindings to virtio generated using bindgen."
66
repository = "https://github.com/rust-vmm/vm-virtio"

crates/virtio-queue/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ test-utils = []
1616
vm-memory = "0.13.1"
1717
vmm-sys-util = "0.11.0"
1818
log = "0.4.17"
19-
virtio-bindings = { path="../virtio-bindings", version = "0.2.1" }
19+
virtio-bindings = { path="../virtio-bindings", version = "0.2.2" }
2020

2121
[dev-dependencies]
2222
criterion = "0.5.1"

0 commit comments

Comments
 (0)