This commit is contained in:
Eric Biggers 2017-01-14 20:44:46 -08:00
parent f2f0df7274
commit a32bdb097d
2 changed files with 11 additions and 2 deletions

9
NEWS
View File

@ -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.

View File

@ -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 <stddef.h>
#include <stdint.h>