From 351f11df33b9416c778265843d98c8ebe61060f9 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Tue, 20 Feb 2024 12:42:32 -0800 Subject: [PATCH] Bump to version 0.12.0 --- CHANGELOG.md | 14 ++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 749a280..57f3ad4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,20 @@ Released YYYY-MM-DD. -------------------------------------------------------------------------------- +## 0.12.0 + +Released 2024-02-20. + +### Removed + +* Removed the definition of `cfg(fuzzing_repro)` from `cargo fuzz run` on select + inputs. This caused too many recompiles in practice during the common fuzzing + workflow where you are fuzzing, find a crash, repeatedly run the fuzzer on + just the crashing input until you fix the crash, and then start fuzzing in + general again and the process repeats. + +-------------------------------------------------------------------------------- + ## 0.11.4 Released 2024-01-25. diff --git a/Cargo.lock b/Cargo.lock index 879dce2..211b11a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -66,7 +66,7 @@ dependencies = [ [[package]] name = "cargo-fuzz" -version = "0.11.4" +version = "0.12.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 990799f..ada61cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["."] [package] name = "cargo-fuzz" -version = "0.11.4" +version = "0.12.0" authors = ["The rust-fuzz Project Developers"] license = "MIT OR Apache-2.0" description = "A `cargo` subcommand for fuzzing with `libFuzzer`! Easy to use!"