Skip to content

Commit

Permalink
virtio-bindings: Prepare v0.2.4 release
Browse files Browse the repository at this point in the history
Update virtio-bindings from v0.2.3 to v0.2.4:
    - Regenerate bindings with bindgen 0.70.1.

Signed-off-by: Ruoqing He <[email protected]>
  • Loading branch information
TimePrinciple authored and stefano-garzarella committed Oct 21, 2024
1 parent 6b1ccb1 commit cee1e6f
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 5 deletions.
2 changes: 2 additions & 0 deletions virtio-bindings/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Upcoming Release

# v0.2.4

## Changed

- Regenerate bindings with bindgen 0.70.1.
Expand Down
2 changes: 1 addition & 1 deletion virtio-bindings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "virtio-bindings"
version = "0.2.3"
version = "0.2.4"
authors = ["Sergio Lopez <[email protected]>"]
description = "Rust FFI bindings to virtio generated using bindgen."
repository = "https://github.com/rust-vmm/vm-virtio"
Expand Down
2 changes: 1 addition & 1 deletion virtio-blk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ vmm-sys-util = { workspace = true }
log = "0.4.17"
virtio-queue = { path = "../virtio-queue" }
virtio-device = { path = "../virtio-device" }
virtio-bindings = { path = "../virtio-bindings", version = "0.2.3" }
virtio-bindings = { path = "../virtio-bindings", version = "0.2.4" }

[dev-dependencies]
vm-memory = { workspace = true, features = ["backend-mmap", "backend-atomic"] }
Expand Down
2 changes: 1 addition & 1 deletion virtio-console/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2021"


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

Expand Down
4 changes: 4 additions & 0 deletions virtio-queue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Upcoming

## Changed

- Updated virtio-bindings from 0.2.3 to 0.2.4.

# v0.13.0

## Changed
Expand Down
2 changes: 1 addition & 1 deletion virtio-queue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ test-utils = []
vm-memory = { workspace = true }
vmm-sys-util = { workspace = true }
log = "0.4.17"
virtio-bindings = { path="../virtio-bindings", version = "0.2.3" }
virtio-bindings = { path="../virtio-bindings", version = "0.2.4" }

[dev-dependencies]
criterion = "0.5.1"
Expand Down
4 changes: 4 additions & 0 deletions virtio-vsock/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Upcoming

## Changed

- Updated virtio-bindings from 0.2.3 to 0.2.4.

# v0.7.0

## Changed
Expand Down
2 changes: 1 addition & 1 deletion virtio-vsock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2021"
[dependencies]
# The `path` part gets stripped when publishing the crate.
virtio-queue = { path = "../virtio-queue", version = "0.13.0" }
virtio-bindings = { path = "../virtio-bindings", version = "0.2.3" }
virtio-bindings = { path = "../virtio-bindings", version = "0.2.4" }
vm-memory = { workspace = true }

[dev-dependencies]
Expand Down

0 comments on commit cee1e6f

Please sign in to comment.