This commit is contained in:
Eric Biggers 2019-01-14 21:37:48 -08:00
parent f952b9acd5
commit cb7ee82c22
2 changed files with 11 additions and 2 deletions

9
NEWS
View File

@ -1,3 +1,12 @@
Version 1.2:
Slight improvements to decompression speed.
Added an AVX-512BW implementation of Adler-32.
The Makefile now supports a user-specified installation PREFIX.
Fixed build error with some Visual Studio versions.
Version 1.1:
Fixed crash in CRC-32 code when the prebuilt libdeflate for
32-bit Windows was called by a program built with Visual Studio.

View File

@ -10,8 +10,8 @@ extern "C" {
#endif
#define LIBDEFLATE_VERSION_MAJOR 1
#define LIBDEFLATE_VERSION_MINOR 1
#define LIBDEFLATE_VERSION_STRING "1.1"
#define LIBDEFLATE_VERSION_MINOR 2
#define LIBDEFLATE_VERSION_STRING "1.2"
#include <stddef.h>
#include <stdint.h>