Skip to content

Commit 854e098

Browse files
vireshkstsquad
authored andcommitted
Prepare release for virtio-queue, -bindings and -vsock
Move virtio-queue, virtio-bindings and virtio-vsock to newer versions. Signed-off-by: Viresh Kumar <[email protected]>
1 parent ffdbc09 commit 854e098

File tree

11 files changed

+30
-17
lines changed

11 files changed

+30
-17
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.0" }
21+
virtio-bindings = { path = "../../virtio-bindings", version = "0.2.1" }
2222

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

crates/devices/virtio-console/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ edition = "2021"
1212

1313

1414
[dependencies]
15-
virtio-bindings = { path = "../../virtio-bindings", version = "0.2.0" }
16-
virtio-queue = { path = "../../virtio-queue", version = "0.8.0" }
15+
virtio-bindings = { path = "../../virtio-bindings", version = "0.2.1" }
16+
virtio-queue = { path = "../../virtio-queue", version = "0.9.0" }
1717
vm-memory = "0.12.0"
1818

1919
[dev-dependencies]
20-
virtio-queue = { path = "../../virtio-queue", version = "0.8.0", features = ["test-utils"] }
20+
virtio-queue = { path = "../../virtio-queue", version = "0.9.0", features = ["test-utils"] }
2121
vm-memory = { version = "0.12.0", features = ["backend-mmap"] }

crates/devices/virtio-vsock/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v0.3.1
2+
3+
## Changes
4+
5+
- Updated vm-memory from 0.11.0 to 0.12.0.
6+
17
# v0.3.0
28

39
## Changes
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "virtio-vsock"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
authors = ["rust-vmm community", "rust-vmm AWS maintainers <[email protected]>"]
55
description = "virtio vsock device implementation"
66
repository = "https://github.com/rust-vmm/vm-virtio"
@@ -11,10 +11,10 @@ edition = "2021"
1111

1212
[dependencies]
1313
# The `path` part gets stripped when publishing the crate.
14-
virtio-queue = { path = "../../virtio-queue", version = "0.8.0" }
15-
virtio-bindings = { path = "../../virtio-bindings", version = "0.2.0" }
14+
virtio-queue = { path = "../../virtio-queue", version = "0.9.0" }
15+
virtio-bindings = { path = "../../virtio-bindings", version = "0.2.1" }
1616
vm-memory = "0.12.0"
1717

1818
[dev-dependencies]
19-
virtio-queue = { path = "../../virtio-queue", version = "0.8.0", features = ["test-utils"] }
19+
virtio-queue = { path = "../../virtio-queue", version = "0.9.0", features = ["test-utils"] }
2020
vm-memory = { version = "0.12.0", features = ["backend-mmap", "backend-atomic"] }

crates/virtio-bindings/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Upcoming Release
1+
# v0.2.1
22

33
- Regenerate bindings with Linux 6.3.
44
- Added bindings for virtio_scsi.h
5-
- Updated vm-memory from 0.10.0 to 0.11.0.
5+
- Updated vm-memory from 0.10.0 to 0.12.0.
66

77
# v0.2.0
88

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.0"
3+
version = "0.2.1"
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-device/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ edition = "2021"
1313
vm-memory = "0.12.0"
1414
log = "0.4.17"
1515
virtio-bindings = { path = "../virtio-bindings" }
16-
virtio-queue = { path = "../virtio-queue", version = "0.8.0"}
16+
virtio-queue = { path = "../virtio-queue", version = "0.9.0"}
1717

1818
[dev-dependencies]
1919
vm-memory = { version = "0.12.0", features = ["backend-mmap", "backend-atomic"] }

crates/virtio-queue-ser/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Upcoming release
22

3+
## Changed
4+
5+
- Updated vm-memory from 0.11.0 to 0.12.0.
6+
37
# v0.5.0
48

59
## Changed

crates/virtio-queue-ser/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ versionize_derive = "0.1.3"
1717
# We use `=0.8.0` as we maintain a 1:1-relationship between virtio-queue
1818
# and virtio-queue-ser releases. This is to prevent accidental changes
1919
# to the serializer output in a patch release of virtio-queue.
20-
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.8.0" }
20+
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.9.0" }
2121
vm-memory = "0.12.0"
2222

2323
[dev-dependencies]
24-
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.8.0", features = ["test-utils"] }
24+
virtio-queue = { path = "../../crates/virtio-queue", version = "=0.9.0", features = ["test-utils"] }

crates/virtio-queue/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# Upcoming Release
1+
# v0.9.0
2+
3+
## Changed
4+
- Updated vm-memory from 0.11.0 to 0.12.0.
25

36
# v0.8.0
47

0 commit comments

Comments
 (0)