-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
See rust-vmm/community#136 Signed-off-by: Patrick Roy <[email protected]>
- Loading branch information
1 parent
5b1f3e3
commit 3ae8b7e
Showing
2 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
# v0.2.0 | ||
|
||
## Added | ||
|
||
- Derive `Eq` for `packet::PacketHeader`. | ||
|
||
## Changes | ||
|
||
- Updated vm-memory to 0.10.0. | ||
- Updated virtio-queue to 0.7.0. | ||
- Upgrade Rust edition to 2021. | ||
|
||
# v0.1.0 | ||
|
||
This is the first release of the crate. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "virtio-vsock" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["rust-vmm community", "rust-vmm AWS maintainers <[email protected]>"] | ||
description = "virtio vsock device implementation" | ||
repository = "https://github.com/rust-vmm/vm-virtio" | ||
|