From a902127613921408bb02b1debe9371e9bcfaf9f2 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Wed, 10 May 2017 13:27:18 -0700 Subject: [PATCH] bumped version number to 1.8.0 due to addition of prototype LZ4F_resetDecompressionContext() --- doc/lz4_manual.html | 4 ++-- doc/lz4frame_manual.html | 4 ++-- lib/lz4.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/lz4_manual.html b/doc/lz4_manual.html index 4c4174d..fecd8cd 100644 --- a/doc/lz4_manual.html +++ b/doc/lz4_manual.html @@ -1,10 +1,10 @@ -1.7.6 Manual +1.8.0 Manual -

1.7.6 Manual

+

1.8.0 Manual


Contents

    diff --git a/doc/lz4frame_manual.html b/doc/lz4frame_manual.html index 5d553ed..fa2c0b9 100644 --- a/doc/lz4frame_manual.html +++ b/doc/lz4frame_manual.html @@ -1,10 +1,10 @@ -1.7.6 Manual +1.8.0 Manual -

    1.7.6 Manual

    +

    1.8.0 Manual


    Contents

      diff --git a/lib/lz4.h b/lib/lz4.h index d5a3016..5b6bc92 100644 --- a/lib/lz4.h +++ b/lib/lz4.h @@ -88,8 +88,8 @@ extern "C" { /*------ Version ------*/ #define LZ4_VERSION_MAJOR 1 /* for breaking interface changes */ -#define LZ4_VERSION_MINOR 7 /* for new (non-breaking) interface capabilities */ -#define LZ4_VERSION_RELEASE 6 /* for tweaks, bug-fixes, or development */ +#define LZ4_VERSION_MINOR 8 /* for new (non-breaking) interface capabilities */ +#define LZ4_VERSION_RELEASE 0 /* for tweaks, bug-fixes, or development */ #define LZ4_VERSION_NUMBER (LZ4_VERSION_MAJOR *100*100 + LZ4_VERSION_MINOR *100 + LZ4_VERSION_RELEASE) -- 2.7.4