diff options
author | Yann Collet <Cyan4973@users.noreply.github.com> | 2018-01-14 00:33:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-14 00:33:56 (GMT) |
commit | d95606d64991332165a39f979c65c80faa49cfd3 (patch) | |
tree | a3ab3ef5dc2b5e2896ca20726989877e3532af91 | |
parent | c423dc21bde53869739d85c08071803662278f5b (diff) | |
parent | 47bf1a9f010d548fa58c7716678e7a11b356b120 (diff) | |
download | lz4-d95606d64991332165a39f979c65c80faa49cfd3.zip lz4-d95606d64991332165a39f979c65c80faa49cfd3.tar.gz lz4-d95606d64991332165a39f979c65c80faa49cfd3.tar.bz2 |
Merge pull request #448 from sunpoet/dev
Fix lz4 version
-rw-r--r-- | lib/lz4.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 0 /* for tweaks, bug-fixes, or development */ +#define LZ4_VERSION_RELEASE 1 /* for tweaks, bug-fixes, or development */ #define LZ4_VERSION_NUMBER (LZ4_VERSION_MAJOR *100*100 + LZ4_VERSION_MINOR *100 + LZ4_VERSION_RELEASE) |