From ef67b11595a300f0dd6fc781b42f23d78300eaee Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Tue, 2 Jan 2024 11:47:09 -0800 Subject: [PATCH] Bump to version 0.11.3 --- CHANGELOG.md | 21 +++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 482aaeb..c64c47d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,27 @@ Released YYYY-MM-DD. -------------------------------------------------------------------------------- +## 0.11.3 + +Released 2024-01-02. + +### Added + +* Added a "careful mode" inspired by the `cargo-careful` project +* Added the ability to use a custom LLVM binaries install path instead of the + default distributed by `rustup` + +### Changed + +* Improved code coverage collection by using the `-merge=1` option +* Reproducing crashes will now build with `---cfg fuzzing_repro` + +### Fixed + +* Initializing a fuzz directory in a workspace is fixed + +-------------------------------------------------------------------------------- + ## 0.11.2 Released 2023-02-13. diff --git a/Cargo.lock b/Cargo.lock index e1733ee..c461aa5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -66,7 +66,7 @@ dependencies = [ [[package]] name = "cargo-fuzz" -version = "0.11.2" +version = "0.11.3" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 606f101..e4a842e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["."] [package] name = "cargo-fuzz" -version = "0.11.2" +version = "0.11.3" authors = ["The rust-fuzz Project Developers"] license = "MIT OR Apache-2.0" description = "A `cargo` subcommand for fuzzing with `libFuzzer`! Easy to use!"