From 35f109932c05522e832d9e43a39aeb29aa663cd2 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Thu, 10 Aug 2023 09:18:48 -0700 Subject: [PATCH] Bump to version 0.4.7 --- CHANGELOG.md | 13 +++++++++++++ Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fba42c..697e71b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -28,6 +28,19 @@ Released YYYY-MM-DD. -------------------------------------------------------------------------------- +## 0.4.7 + +Released 2023-08-10. + +### Added + +* Added the `link_libfuzzer` cargo feature. This feature is on by default and + preserves the existing behavior of statically linking libfuzzer. You can + disable it if you are linking your own version of libfuzzer some other way, or + another library that provides the same ABI as libfuzzer. + +-------------------------------------------------------------------------------- + ## 0.4.6 Released 2023-01-26. diff --git a/Cargo.toml b/Cargo.toml index a129872..9aaf813 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT/Apache-2.0/NCSA" name = "libfuzzer-sys" readme = "./README.md" repository = "https://github.com/rust-fuzz/libfuzzer" -version = "0.4.6" +version = "0.4.7" [dependencies] arbitrary = "1"