mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-09-08 03:39:25 -04:00
v1.1
This commit is contained in:
parent
6e7813e8fa
commit
6a05e63bbb
21
NEWS
21
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.
|
||||
|
||||
|
@ -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 <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user