summaryrefslogtreecommitdiffstats
path: root/programs
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-06-14 15:56:24 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-06-14 15:56:24 (GMT)
commit2f0a717a35abbc2117c446272c4c96b892e991fc (patch)
tree9c2d87eb9e119933e358ab83ae29a7bfa1d0b153 /programs
parent8ee9e6d04e7640b5c1a9bcbee48553a883b02353 (diff)
downloadlz4-2f0a717a35abbc2117c446272c4c96b892e991fc.zip
lz4-2f0a717a35abbc2117c446272c4c96b892e991fc.tar.gz
lz4-2f0a717a35abbc2117c446272c4c96b892e991fc.tar.bz2
LZ4 Streaming : check overlapping input/dictionary
Diffstat (limited to 'programs')
-rw-r--r--programs/Makefile2
-rw-r--r--programs/lz4cli.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/programs/Makefile b/programs/Makefile
index 811dda2..6ec2788 100644
--- a/programs/Makefile
+++ b/programs/Makefile
@@ -30,7 +30,7 @@
# fullbench32: Same as fullbench, but forced to compile in 32-bits mode
# ################################################################
-RELEASE=rc118
+RELEASE=r118
DESTDIR=
PREFIX=/usr
CC:=$(CC)
diff --git a/programs/lz4cli.c b/programs/lz4cli.c
index fd2721d..e6e6740 100644
--- a/programs/lz4cli.c
+++ b/programs/lz4cli.c
@@ -109,7 +109,7 @@
//****************************
#define COMPRESSOR_NAME "LZ4 Compression CLI"
#ifndef LZ4_VERSION
-# define LZ4_VERSION "v1.1.8"
+# define LZ4_VERSION "v1.2.0"
#endif
#define AUTHOR "Yann Collet"
#define WELCOME_MESSAGE "*** %s %i-bits %s, by %s (%s) ***\n", COMPRESSOR_NAME, (int)(sizeof(void*)*8), LZ4_VERSION, AUTHOR, __DATE__