From 702871d3109aff3409aa78ffb8b4ccc4cc70bb00 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Thu, 27 Oct 2016 20:50:43 -0700 Subject: [PATCH] v0.6 --- NEWS | 7 +++++++ libdeflate.h | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index eacd4d6b..9fe9e9fd 100644 --- a/NEWS +++ b/NEWS @@ -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 diff --git a/libdeflate.h b/libdeflate.h index 8c587b60..c64e9bf7 100644 --- a/libdeflate.h +++ b/libdeflate.h @@ -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 #include