]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
update version to 0.4.2 86/head
authorYann Collet <yann.collet.73@gmail.com>
Wed, 2 Dec 2015 14:05:22 +0000 (15:05 +0100)
committerYann Collet <yann.collet.73@gmail.com>
Wed, 2 Dec 2015 14:05:22 +0000 (15:05 +0100)
Makefile
lib/zstd.h
programs/Makefile
programs/zstdcli.c

index fbdb05c91f12c3e9dd5d99fb1db309e8ec55c1c0..a1b6d12306fd77ed9b4d66f64a0112f5e3db8111 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -32,7 +32,7 @@
 # ################################################################
 
 # Version number
-export VERSION := 0.4.0
+export VERSION := 0.4.2
 
 PRGDIR  = programs
 ZSTDDIR = lib
index 96bb184f0a0ff64ae3f540949277be1f08ab24db..15fc626339db3fdbf318a84114b36efaaa455747 100644 (file)
@@ -48,7 +48,7 @@ extern "C" {
 ***************************************/
 #define ZSTD_VERSION_MAJOR    0    /* for breaking interface changes  */
 #define ZSTD_VERSION_MINOR    4    /* for new (non-breaking) interface capabilities */
-#define ZSTD_VERSION_RELEASE  0    /* for tweaks, bug-fixes, or development */
+#define ZSTD_VERSION_RELEASE  2    /* for tweaks, bug-fixes, or development */
 #define ZSTD_VERSION_NUMBER  (ZSTD_VERSION_MAJOR *100*100 + ZSTD_VERSION_MINOR *100 + ZSTD_VERSION_RELEASE)
 unsigned ZSTD_versionNumber (void);
 
index c6a58939ca0f32de1cde1d4a6ba42be7f57ae7f8..17fed5b0aeccab2eb21c7ae81b5177c5227fb8e2 100644 (file)
@@ -30,7 +30,7 @@
 # fullbench32: Same as fullbench, but forced to compile in 32-bits mode
 # ##########################################################################
 
-VERSION?= 0.4.0
+VERSION?= 0.4.2
 
 DESTDIR?=
 PREFIX ?= /usr/local
index 235b56cf3b6597e41326724f84910b817e91ab6e..7904a616f1557ae27bce68b9de035e468a2781c9 100644 (file)
@@ -70,7 +70,7 @@
 **************************************/
 #define COMPRESSOR_NAME "zstd command line interface"
 #ifndef ZSTD_VERSION
-#  define ZSTD_VERSION "v0.4.0"
+#  define ZSTD_VERSION "v0.4.2"
 #endif
 #define AUTHOR "Yann Collet"
 #define WELCOME_MESSAGE "*** %s %i-bits %s, by %s (%s) ***\n", COMPRESSOR_NAME, (int)(sizeof(void*)*8), ZSTD_VERSION, AUTHOR, __DATE__