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