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!"