From 39fda9a447d4dd51f395c5d94f9b63c7aec9b68b Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Mon, 26 Feb 2018 13:50:04 -0800 Subject: bumped version number to v1.8.2 updated NEWS was current progresses --- NEWS | 5 +++++ doc/lz4_manual.html | 4 ++-- doc/lz4frame_manual.html | 4 ++-- lib/lz4.h | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index f9c503f..9ac41f2 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,8 @@ +v1.8.2 +perf: slightly faster HC compression and decompression speed +perf: very small compression ratio improvement +cli : benchmark mode more accurate for small inputs + v1.8.1 perf : faster and stronger ultra modes (levels 10+) perf : slightly faster compression and decompression speed diff --git a/doc/lz4_manual.html b/doc/lz4_manual.html index 43107c6..d14467f 100644 --- a/doc/lz4_manual.html +++ b/doc/lz4_manual.html @@ -1,10 +1,10 @@ -1.8.1 Manual +1.8.2 Manual -

1.8.1 Manual

+

1.8.2 Manual


Contents

    diff --git a/doc/lz4frame_manual.html b/doc/lz4frame_manual.html index 1ddf6d8..db004ab 100644 --- a/doc/lz4frame_manual.html +++ b/doc/lz4frame_manual.html @@ -1,10 +1,10 @@ -1.8.1 Manual +1.8.2 Manual -

    1.8.1 Manual

    +

    1.8.2 Manual


    Contents

      diff --git a/lib/lz4.h b/lib/lz4.h index 2dd1ff5..911ea79 100644 --- a/lib/lz4.h +++ b/lib/lz4.h @@ -93,7 +93,7 @@ extern "C" { /*------ Version ------*/ #define LZ4_VERSION_MAJOR 1 /* for breaking interface changes */ #define LZ4_VERSION_MINOR 8 /* for new (non-breaking) interface capabilities */ -#define LZ4_VERSION_RELEASE 1 /* for tweaks, bug-fixes, or development */ +#define LZ4_VERSION_RELEASE 2 /* for tweaks, bug-fixes, or development */ #define LZ4_VERSION_NUMBER (LZ4_VERSION_MAJOR *100*100 + LZ4_VERSION_MINOR *100 + LZ4_VERSION_RELEASE) -- cgit v0.12