From a640b5e8a64de2bf22b7e160f56327ec75feac27 Mon Sep 17 00:00:00 2001 From: Jinank Jain Date: Thu, 21 Dec 2023 14:30:37 +0000 Subject: [PATCH] release 0.16.0 Signed-off-by: Jinank Jain --- CHANGELOG.md | 14 ++++++++++---- Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96c78ab3..c6f89f6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,10 +3,10 @@ ## Added ## Changed -- [[#234](https://github.com/rust-vmm/kvm-ioctls/issues/234)] vcpu: export -reg_size as a public method. -- [[#243](https://github.com/rust-vmm/kvm-ioctls/pull/243)] derived the `Copy` - trait for `IoEventAddress` and `NoDatamatch`. + +# v0.16.0 + +## Added - [[#242](https://github.com/rust-vmm/kvm-ioctls/pull/242)] x86: add support for SMI injection via `Vcpu::smi()` (`KVM_SMI` ioctl). - [[#241](https://github.com/rust-vmm/kvm-ioctls/pull/241)] Add support for @@ -16,6 +16,12 @@ reg_size as a public method. - [[#244](https://github.com/rust-vmm/kvm-ioctls/pull/244)] add support for coalesced MMIO (`KVM_CAP_COALESCED_MMIO` / `KVM_CAP_COALESCED_PIO`) +## Changed +- [[#234](https://github.com/rust-vmm/kvm-ioctls/issues/234)] vcpu: export +reg_size as a public method. +- [[#243](https://github.com/rust-vmm/kvm-ioctls/pull/243)] derived the `Copy` + trait for `IoEventAddress` and `NoDatamatch`. + # v0.15.0 ## Added diff --git a/Cargo.toml b/Cargo.toml index 45cbca37..799e852f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kvm-ioctls" -version = "0.15.0" +version = "0.16.0" authors = ["Amazon Firecracker Team "] description = "Safe wrappers over KVM ioctls" repository = "https://github.com/rust-vmm/kvm-ioctls"