From fc4a6153b01252c03e9e52ed101c25d99f9cf6fc Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Tue, 9 Dec 2014 09:47:54 +0100 Subject: fixed : pkg version --- Makefile | 2 +- NEWS | 1 + lib/Makefile | 3 ++- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f5bf4b5..3b1e51f 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ # ################################################################ # Version numbers -VERSION=125 +export VERSION=125 export RELEASE=r$(VERSION) DESTDIR?= diff --git a/NEWS b/NEWS index 45e1871..6dd49f4 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,7 @@ r125: Changed : endian and alignment code Changed : directory structure : new "lib" directory Updated : lz4io, now uses lz4frame +Improved: slightly improved decoding speed Fixed : some alignment warnings under clang Fixed : deprecated function LZ4_slideInputBufferHC() diff --git a/lib/Makefile b/lib/Makefile index 3ae12fa..c59cc82 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -32,7 +32,8 @@ # ################################################################ # Version numbers -RELEASE=r125 +VERSION=125 +RELEASE=r$(VERSION) LIBVER_MAJOR=`sed -n '/define LZ4_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lz4.h` LIBVER_MINOR=`sed -n '/define LZ4_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lz4.h` LIBVER_PATCH=`sed -n '/define LZ4_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < lz4.h` -- cgit v0.12