From ee0229287c1a87f7d917d0ee7e0ea4829e287a2b Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Thu, 25 Feb 2016 14:53:35 +0100 Subject: [PATCH] changed version to v0.6.0 --- lib/zstd.h | 4 ++-- lib/zstd_static.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/zstd.h b/lib/zstd.h index 53ed69739..26c6e275f 100644 --- a/lib/zstd.h +++ b/lib/zstd.h @@ -60,8 +60,8 @@ extern "C" { * Version ***************************************/ #define ZSTD_VERSION_MAJOR 0 /* for breaking interface changes */ -#define ZSTD_VERSION_MINOR 5 /* for new (non-breaking) interface capabilities */ -#define ZSTD_VERSION_RELEASE 1 /* for tweaks, bug-fixes, or development */ +#define ZSTD_VERSION_MINOR 6 /* for new (non-breaking) interface capabilities */ +#define ZSTD_VERSION_RELEASE 0 /* for tweaks, bug-fixes, or development */ #define ZSTD_VERSION_NUMBER (ZSTD_VERSION_MAJOR *100*100 + ZSTD_VERSION_MINOR *100 + ZSTD_VERSION_RELEASE) ZSTDLIB_API unsigned ZSTD_versionNumber (void); diff --git a/lib/zstd_static.h b/lib/zstd_static.h index 61216535b..8ca97f5b4 100644 --- a/lib/zstd_static.h +++ b/lib/zstd_static.h @@ -51,7 +51,7 @@ extern "C" { /*-************************************* * Constants ***************************************/ -#define ZSTD_MAGICNUMBER 0xFD2FB525 /* v0.5 */ +#define ZSTD_MAGICNUMBER 0xFD2FB526 /* v0.6 */ /*-*************************************