diff --git a/CHANGELOG.md b/CHANGELOG.md index 458b373..482aaeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,16 @@ Released YYYY-MM-DD. -------------------------------------------------------------------------------- +## 0.11.2 + +Released 2023-02-13. + +### Changed + +* No longer rebuilds the fuzz target binary for each coverage run. + +-------------------------------------------------------------------------------- + ## 0.11.1 Released 2022-10-25. diff --git a/Cargo.lock b/Cargo.lock index 47f2a26..80fae15 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -57,7 +57,7 @@ dependencies = [ [[package]] name = "cargo-fuzz" -version = "0.11.1" +version = "0.11.2" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 107465e..ae30e61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["."] [package] name = "cargo-fuzz" -version = "0.11.1" +version = "0.11.2" authors = ["The rust-fuzz Project Developers"] license = "MIT OR Apache-2.0" description = "A `cargo` subcommand for fuzzing with `libFuzzer`! Easy to use!"