From 24319975b6b77a6277673511abdd101eed828b66 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Wed, 6 Jun 2018 15:51:55 -0700 Subject: [PATCH] bumped version number to v1.3.5 --- NEWS | 15 +++++++++++++++ doc/zstd_manual.html | 4 ++-- lib/zstd.h | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 9e903e6bc..e3bfb242d 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,18 @@ +v1.3.5 +perf: much faster dictionary compression, by @felixhandte +perf: small quality improvement for dictionary generation, by @terrelln +perf: slightly improved high compression levels (notably level 19) +mem : automatic memory release for long duration contexts +cli : fix : overlapLog can be manually set +cli : fix : decoding invalid lz4 frames +api : fix : performance degradation for dictionary compression when using advanced API, by @terrelln +api : change : clarify ZSTD_CCtx_reset() vs ZSTD_CCtx_resetParameters(), by @terrelln +build: select custom libzstd scope through control macros, by @GeorgeLu97 +build: OpenBSD patch, by @bket +build: make and make all are compatible with -j +doc : clarify zstd_compression_format.md, updated for IETF RFC process +misc: pzstd compatible with reproducible compilation, by @lamby + v1.3.4 perf: faster speed (especially decoding speed) on recent cpus (haswell+) perf: much better performance associating --long with multi-threading, by @terrelln diff --git a/doc/zstd_manual.html b/doc/zstd_manual.html index 3d107746b..3dee74a3d 100644 --- a/doc/zstd_manual.html +++ b/doc/zstd_manual.html @@ -1,10 +1,10 @@ -zstd 1.3.4 Manual +zstd 1.3.5 Manual -

zstd 1.3.4 Manual

+

zstd 1.3.5 Manual


Contents

    diff --git a/lib/zstd.h b/lib/zstd.h index 6f4b071e6..8f42ff81b 100644 --- a/lib/zstd.h +++ b/lib/zstd.h @@ -59,7 +59,7 @@ extern "C" { /*------ Version ------*/ #define ZSTD_VERSION_MAJOR 1 #define ZSTD_VERSION_MINOR 3 -#define ZSTD_VERSION_RELEASE 4 +#define ZSTD_VERSION_RELEASE 5 #define ZSTD_VERSION_NUMBER (ZSTD_VERSION_MAJOR *100*100 + ZSTD_VERSION_MINOR *100 + ZSTD_VERSION_RELEASE) ZSTDLIB_API unsigned ZSTD_versionNumber(void); /**< useful to check dll version */