From d1de86d03b2b4e332915ee1eda06e62c43daa9b6 Mon Sep 17 00:00:00 2001 From: Robert Swiecki Date: Sat, 7 Dec 2019 16:31:40 +0100 Subject: [PATCH] Release version 2.0 --- CHANGELOG | 9 +++++++++ README.md | 2 +- display.c | 2 +- honggfuzz.h | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index dcd788aba..1b44b97ce 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,12 @@ +2019-12-07 - Version 2.0 + - Coverage-based corpus minimizer with '-M' + - QEmu mode: coverage feedback for Linux binaries + - *SAN sanitizer stack-parsing improved for Linux and for POSIX + - Move signal functionality to libhfcommon/ + - Fixed Android builds with newer unwind and capstone + - NetDriver: more functionality - e.g. specifying custom addresses and custom tmpfs mount points + - Examples: for /usr/bin/file, newer ISC Bind patch, improved OpenSSL code + 2019-05-22 - Version 1.9 - Don't include netdriver if not needed - Updated examples (bind/openssl) diff --git a/README.md b/README.md index 45abf4936..1f2844d34 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ A security oriented, feedback-driven, evolutionary, easy-to-use fuzzer with inte # Code - * Latest stable version: [1.9](https://github.com/google/honggfuzz/releases) + * Latest stable version: [2.0](https://github.com/google/honggfuzz/releases) * [Changelog](https://github.com/google/honggfuzz/blob/master/CHANGELOG) # Features diff --git a/display.c b/display.c index cc108e42c..a02e6ee45 100644 --- a/display.c +++ b/display.c @@ -264,7 +264,7 @@ static void display_displayLocked(honggfuzz_t* hfuzz) { } display_put("\n---------------------------------- [ " ESC_BOLD "LOGS" ESC_RESET - " ] ----------------/ " ESC_BOLD "%s %s " ESC_RESET "/-", + " ] ------------------/ " ESC_BOLD "%s %s " ESC_RESET "/-", PROG_NAME, PROG_VERSION); display_put(ESC_SCROLL_REGION(13, ) ESC_NAV_HORIZ(1) ESC_NAV_DOWN(500)); } diff --git a/honggfuzz.h b/honggfuzz.h index 9e5ba8e9d..c8f90594f 100644 --- a/honggfuzz.h +++ b/honggfuzz.h @@ -38,7 +38,7 @@ #include "libhfcommon/util.h" #define PROG_NAME "honggfuzz" -#define PROG_VERSION "2.0rc" +#define PROG_VERSION "2.0" /* Name of the template which will be replaced with the proper name of the file */ #define _HF_FILE_PLACEHOLDER "___FILE___"