diff --git a/CHANGELOG.md b/CHANGELOG.md index e089dab..e2571d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -30,15 +30,18 @@ Released YYYY-MM-DD. ## 0.4.9 -Released YYYY-MM-DD. +Released 2025-01-28. ### Added -* The `example_init` demonstrates how to pass an initialization code block to the `fuzz_target!` macro. +* The `example_init` demonstrates how to pass an initialization code block to + the `fuzz_target!` macro. ### Changed -* The `fuzz_target!` macro now supports the generation of `LLVMFuzzerInitialize` to execute initialization code once before running the fuzzer. This change is not breaking and is completely backward compatible. +* The `fuzz_target!` macro now supports the generation of `LLVMFuzzerInitialize` + to execute initialization code once before running the fuzzer. This change is + not breaking and is completely backward compatible. -------------------------------------------------------------------------------- diff --git a/Cargo.toml b/Cargo.toml index 27cae5b..7003cec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ license = "(MIT OR Apache-2.0) AND NCSA" name = "libfuzzer-sys" readme = "./README.md" repository = "https://github.com/rust-fuzz/libfuzzer" -version = "0.4.8" +version = "0.4.9" [dependencies] arbitrary = "1"