diff --git a/kvm-bindings/CHANGELOG.md b/kvm-bindings/CHANGELOG.md index 9f5bbf1..319e1d1 100644 --- a/kvm-bindings/CHANGELOG.md +++ b/kvm-bindings/CHANGELOG.md @@ -5,10 +5,14 @@ ### Changed -- Updated KVM_MAX_CPUID_ENTRIES to 256. - ### Removed +## [0.11.0] + +### Changed + +- Updated KVM_MAX_CPUID_ENTRIES to 256. + ## [0.10.0] ### Added diff --git a/kvm-bindings/Cargo.toml b/kvm-bindings/Cargo.toml index 43b68cd..40ad4c8 100644 --- a/kvm-bindings/Cargo.toml +++ b/kvm-bindings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kvm-bindings" -version = "0.10.0" +version = "0.11.0" authors = ["Amazon firecracker team "] description = "Rust FFI bindings to KVM generated using bindgen." repository = "https://github.com/rust-vmm/kvm" diff --git a/kvm-ioctls/CHANGELOG.md b/kvm-ioctls/CHANGELOG.md index 2657c80..bbbfbab 100644 --- a/kvm-ioctls/CHANGELOG.md +++ b/kvm-ioctls/CHANGELOG.md @@ -2,12 +2,18 @@ ## Upcoming Release +## v0.20.0 + ### Added - [[#288](https://github.com/rust-vmm/kvm-ioctls/pull/288)]: Introduce `Cap::GuestMemfd`, `Cap::MemoryAttributes` and `Cap::UserMemory2` capabilities enum variants for use with `VmFd::check_extension`. - [[#288](https://github.com/rust-vmm/kvm-ioctls/pull/288)]: Introduce `VmFd::check_extension_raw` and `VmFd::check_extension_int` to allow `KVM_CHECK_EXTENSION` to return integer. +### Changed + +- [[#305](https://github.com/rust-vmm/kvm/pull/305)]: Updated kvm-bindings to 0.11.0. + ### Fixed - [[#298](https://github.com/rust-vmm/kvm/pull/298)]: Fixed incorrect usage of `ioctl_wit_ref` in the diff --git a/kvm-ioctls/Cargo.toml b/kvm-ioctls/Cargo.toml index ba8fcb1..4b599b1 100644 --- a/kvm-ioctls/Cargo.toml +++ b/kvm-ioctls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kvm-ioctls" -version = "0.19.1" +version = "0.20.0" authors = ["Amazon Firecracker Team "] description = "Safe wrappers over KVM ioctls" repository = "https://github.com/rust-vmm/kvm" @@ -11,7 +11,7 @@ edition = "2021" [dependencies] libc = "0.2.39" -kvm-bindings = { path = "../kvm-bindings", version = "0.10.0", features = ["fam-wrappers"] } +kvm-bindings = { path = "../kvm-bindings", version = "0.11.0", features = ["fam-wrappers"] } vmm-sys-util = "0.12.1" bitflags = "2.4.1"