This commit is contained in:
Eric Biggers 2016-10-27 20:50:43 -07:00
parent 62cc3d71b4
commit 702871d310
2 changed files with 9 additions and 2 deletions

7
NEWS
View File

@ -1,3 +1,10 @@
Version 0.6:
Various improvements to the gzip program's behavior.
Faster CRC-32 on AVX-capable processors.
Other minor changes.
Version 0.5:
The CRC-32 checksum algorithm has been optimized with carryless
multiplication instructions for x86_64 (PCLMUL). This speeds up gzip

View File

@ -10,8 +10,8 @@ extern "C" {
#endif
#define LIBDEFLATE_VERSION_MAJOR 0
#define LIBDEFLATE_VERSION_MINOR 5
#define LIBDEFLATE_VERSION_STRING "0.5"
#define LIBDEFLATE_VERSION_MINOR 6
#define LIBDEFLATE_VERSION_STRING "0.6"
#include <stddef.h>
#include <stdint.h>