diff --git a/CHANGELOG.md b/CHANGELOG.md index 622d28d..23c08c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [Unreleased] +## v0.8.0 * Added set_check_for_hangup() to PollContext. * Added writable()/has_error()/raw_events() to PollEvent. @@ -13,6 +13,12 @@ instead of using the current cursor. * Removed `max_events` from `Epoll::wait` which removes possible undefined behavior. +* [[#104](https://github.com/rust-vmm/vmm-sys-util/issues/104)]: Fixed FAM + struct `PartialEq` implementation. +* [[#85](https://github.com/rust-vmm/vmm-sys-util/issues/85)]: Fixed FAM struct + `Clone` implementation. +* [[#99](https://github.com/rust-vmm/vmm-sys-util/issues/99)]: Validate the + maximum capacity when initializing FAM Struct. # v0.7.0 diff --git a/Cargo.toml b/Cargo.toml index 5935e39..6a4b6bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vmm-sys-util" -version = "0.7.0" +version = "0.8.0" authors = ["Intel Virtualization Team "] description = "A system utility set" repository = "https://github.com/rust-vmm/vmm-sys-util"