diff --git a/CHANGELOG.md b/CHANGELOG.md index c9a4e60f..0161bca0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# v0.11.0 + +## Added +- [[#178](https://github.com/rust-vmm/kvm-ioctls/pull/178)] Support for the AMD + Security Encrypted Virtualization (SEV) through the following VM ioctls: + `encrypt_op`, `encrypt_op_sev`, `register_enc_memory_region` and + `unregister_enc_memory_region`. +- [[#184](https://github.com/rust-vmm/kvm-ioctls/pull/184)] `DeviceFd` now + derives `Debug`. + # v0.10.0 ## Changed diff --git a/Cargo.toml b/Cargo.toml index 3b600857..aa6d12be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kvm-ioctls" -version = "0.10.0" +version = "0.11.0" authors = ["Amazon Firecracker Team "] description = "Safe wrappers over KVM ioctls" repository = "https://github.com/rust-vmm/kvm-ioctls"