From 5413f0a42e122aeb28f087f4177628b745083ac0 Mon Sep 17 00:00:00 2001 From: Robert Swiecki Date: Wed, 22 Jul 2020 21:51:47 +0200 Subject: [PATCH] Prepare for version 2.3 --- CHANGELOG | 11 +++++++++++ README.md | 2 +- honggfuzz.h | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b40d7bca9..4af42c0c2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,14 @@ +2020-07-22 - Version 2.3 + - honggfuzz.h - split run_t into substructs + - clang-format options in .clang-format + - added missing mutex initializers + - removed unncessary comparisons to 'true' and 'false' + - improved NetBSD compatibility + - removed unnecessary memory fences (speed ups) + - faster searching through the binary for const 4/8-byte values + - removed unnecessary includes with iwyu + - libhfnetdriver - general improvements around local socket fuzzing and timeouts + 2020-04-24 - Version 2.2 - Added 8bitcnt instrumentation - use hfuzz-cc/hfuzz-8bitcnt-(gcc|clang) for that - PC-guard instrumentation now uses edge counting diff --git a/README.md b/README.md index 2e2a6871c..51cb1d0a8 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ A security oriented, feedback-driven, evolutionary, easy-to-use fuzzer with inte ## Code - * Latest stable version: [2.2](https://github.com/google/honggfuzz/releases) + * Latest stable version: [2.3](https://github.com/google/honggfuzz/releases) * [Changelog](https://github.com/google/honggfuzz/blob/master/CHANGELOG) ## Features diff --git a/honggfuzz.h b/honggfuzz.h index 913852de3..9d07fdf42 100644 --- a/honggfuzz.h +++ b/honggfuzz.h @@ -39,7 +39,7 @@ #include "libhfcommon/util.h" #define PROG_NAME "honggfuzz" -#define PROG_VERSION "2.2" +#define PROG_VERSION "2.3" /* Name of the template which will be replaced with the proper name of the file */ #define _HF_FILE_PLACEHOLDER "___FILE___"