This commit is contained in:
Eric Biggers 2017-07-29 14:37:06 -07:00
parent 48dcf684ec
commit 3d96a83ef9
2 changed files with 9 additions and 2 deletions

7
NEWS
View File

@ -1,3 +1,10 @@
Version 0.8:
Build fixes for certain platforms and compilers.
libdeflate now produces the same output on all CPU architectures.
Improved documentation for building libdeflate on Windows.
Version 0.7: Version 0.7:
Fixed a very rare bug that caused data to be compressed incorrectly. Fixed a very rare bug that caused data to be compressed incorrectly.
The bug affected compression levels 7 and below since libdeflate v0.2. The bug affected compression levels 7 and below since libdeflate v0.2.

View File

@ -10,8 +10,8 @@ extern "C" {
#endif #endif
#define LIBDEFLATE_VERSION_MAJOR 0 #define LIBDEFLATE_VERSION_MAJOR 0
#define LIBDEFLATE_VERSION_MINOR 7 #define LIBDEFLATE_VERSION_MINOR 8
#define LIBDEFLATE_VERSION_STRING "0.7" #define LIBDEFLATE_VERSION_STRING "0.8"
#include <stddef.h> #include <stddef.h>
#include <stdint.h> #include <stdint.h>