From 6a05e63bbbc599d137b50e7479504ef84d07c284 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Sun, 23 Dec 2018 13:13:28 -0600 Subject: [PATCH] v1.1 --- NEWS | 21 +++++++++++++++++++++ libdeflate.h | 4 ++-- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index a19f014..4227682 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,24 @@ +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. + + Improved the worst-case decompression speed of malicious data. + + Fixed build error when compiling for an ARM processor without + hardware floating point support. + + Improved performance on the PowerPC64 architecture. + + Added soname to libdeflate.so, to make packaging easier. + + Added 'make install' target to the Makefile. + + The Makefile now supports user-specified CPPFLAGS. + + The Windows binary releases now include the import library for + libdeflate.dll. libdeflate.lib is now the import library, and + libdeflatestatic.lib is the static library. + Version 1.0: Added support for multi-member gzip files. diff --git a/libdeflate.h b/libdeflate.h index 678f472..f8f6ace 100644 --- a/libdeflate.h +++ b/libdeflate.h @@ -10,8 +10,8 @@ extern "C" { #endif #define LIBDEFLATE_VERSION_MAJOR 1 -#define LIBDEFLATE_VERSION_MINOR 0 -#define LIBDEFLATE_VERSION_STRING "1.0" +#define LIBDEFLATE_VERSION_MINOR 1 +#define LIBDEFLATE_VERSION_STRING "1.1" #include #include