From c71af57ed8924b4c0e15a0ef711e8bb89e742346 Mon Sep 17 00:00:00 2001 From: Andreea Florescu Date: Wed, 22 Jan 2020 14:59:13 +0200 Subject: [PATCH] release 0.4.0 Updated changelog and version to 0.4.0. Signed-off-by: Andreea Florescu --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c16a87e..3e6582a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# v0.4.0 + +* Added Windows support for TempFile and errno::Error. +* Added `into_file` for TempFile which enables the TempFile to be used as a + regular file. +* Implemented std::error::Error for errno::Error. +* Fixed the implementation of `register_signal_handler` by allowing only + valid signal numbers. + # v0.3.1 * Advertise functionality for obtaining POSIX real time signal base which is diff --git a/Cargo.toml b/Cargo.toml index f9e3623..865e659 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vmm-sys-util" -version = "0.3.1" +version = "0.4.0" authors = ["Intel Virtualization Team "] description = "A system utility set" repository = "https://github.com/rust-vmm/vmm-sys-util"