From 0ddf7ef6f6079bf217cb297278b7ba35e3e70116 Mon Sep 17 00:00:00 2001 From: Patrick Roy Date: Tue, 23 Apr 2024 15:34:54 +0100 Subject: [PATCH] Prepare 0.17.0 release Signed-off-by: Patrick Roy --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fe12cbc7..b1244d90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ ### Changed +## v0.17.0 + +### Changed + - [[#255](https://github.com/rust-vmm/kvm-ioctls/issues/255)]: Fixed a soundness issue when accessing the `kvm_run` struct. `VcpuFd::run()` and `VcpuFd::set_kvm_immediate_exit()` now take `&mut self` as a consequence. diff --git a/Cargo.toml b/Cargo.toml index 0a2ff317..fd985e84 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kvm-ioctls" -version = "0.16.0" +version = "0.17.0" authors = ["Amazon Firecracker Team "] description = "Safe wrappers over KVM ioctls" repository = "https://github.com/rust-vmm/kvm-ioctls"