From 4befab0fcc741101c4cfd4b81a6ca60ba5a4dafe Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Tue, 4 Nov 2014 20:04:43 +0100 Subject: lz4.h : updated library version number to 1.4.0 --- lz4.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lz4.h b/lz4.h index 3c35c6e..0350f6a 100644 --- a/lz4.h +++ b/lz4.h @@ -47,8 +47,8 @@ extern "C" { Version **************************************/ #define LZ4_VERSION_MAJOR 1 /* for major interface/format changes */ -#define LZ4_VERSION_MINOR 3 /* for minor interface/format changes */ -#define LZ4_VERSION_RELEASE 1 /* for tweaks, bug-fixes, or development */ +#define LZ4_VERSION_MINOR 4 /* for minor interface/format changes */ +#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) int LZ4_versionNumber (void); -- cgit v0.12