Skip to content

Commit

Permalink
virtio-bindings: release v0.2.3
Browse files Browse the repository at this point in the history
This release contains updated bindings.

Signed-off-by: Manos Pitsidianakis <[email protected]>
  • Loading branch information
epilys committed Sep 10, 2024
1 parent 4084a91 commit 955c65e
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.3

## Added

- Exposed virtio_ids.h bindings as a public module.
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.2"
version = "0.2.3"
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 = "0.12.1"
log = "0.4.17"
virtio-queue = { path = "../virtio-queue" }
virtio-device = { path = "../virtio-device" }
virtio-bindings = { path = "../virtio-bindings", version = "0.2.2" }
virtio-bindings = { path = "../virtio-bindings", version = "0.2.3" }

[dev-dependencies]
vm-memory = { version = "0.15.0", 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.2" }
virtio-bindings = { path = "../virtio-bindings", version = "0.2.3" }
virtio-queue = { path = "../virtio-queue", version = "0.12.0" }
vm-memory = "0.15.0"

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.2 to 0.2.3.

# v0.12.0

## Added
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 = "0.15.0"
vmm-sys-util = "0.12.1"
log = "0.4.17"
virtio-bindings = { path="../virtio-bindings", version = "0.2.2" }
virtio-bindings = { path="../virtio-bindings", version = "0.2.3" }

[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.2 to 0.2.3.

# v0.6.0

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

[dev-dependencies]
Expand Down

0 comments on commit 955c65e

Please sign in to comment.