From a32bdb097de48e5ddffc959a58297d384b58fcaa Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sat, 14 Jan 2017 20:44:46 -0800 Subject: [PATCH] v0.7 --- NEWS | 9 +++++++++ libdeflate.h | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 9fe9e9f..15cdc71 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,12 @@ +Version 0.7: + Fixed a very rare bug that caused data to be compressed incorrectly. + The bug affected compression levels 7 and below since libdeflate v0.2. + Although there have been no user reports of the bug, and I believe it + would have been highly unlikely to encounter on realistic data, it could + occur on data specially crafted to reproduce it. + + Fixed a compilation error when building with clang 3.7. + Version 0.6: Various improvements to the gzip program's behavior. diff --git a/libdeflate.h b/libdeflate.h index c64e9bf..32d131f 100644 --- a/libdeflate.h +++ b/libdeflate.h @@ -10,8 +10,8 @@ extern "C" { #endif #define LIBDEFLATE_VERSION_MAJOR 0 -#define LIBDEFLATE_VERSION_MINOR 6 -#define LIBDEFLATE_VERSION_STRING "0.6" +#define LIBDEFLATE_VERSION_MINOR 7 +#define LIBDEFLATE_VERSION_STRING "0.7" #include #include