From 1ebca8ebf5096070e508cf165e82b383844b18fc Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Wed, 26 May 2021 15:18:17 -0700 Subject: [PATCH] Bump to version 0.4.2 --- CHANGELOG.md | 13 +++++++++++++ Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f0e6039..77be1fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,19 @@ Released YYYY-MM-DD. -------------------------------------------------------------------------------- +## 0.4.2 + +Released 2020-05-26. + +### Changed + +* Improved performance of checking for whether `cargo fuzz` is requesting the + `std::fmt::Debug` output of an input or not. This is always false during + regular fuzzing, so making this check faster should give slightly better + fuzzing throughput. + +-------------------------------------------------------------------------------- + ## 0.4.1 Released 2020-05-13. diff --git a/Cargo.toml b/Cargo.toml index d7beb4c..72285b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT/Apache-2.0/NCSA" name = "libfuzzer-sys" readme = "./README.md" repository = "https://github.com/rust-fuzz/libfuzzer" -version = "0.4.1" +version = "0.4.2" [dependencies] arbitrary = "1"