]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
bumped version number to v1.3.5
authorYann Collet <cyan@fb.com>
Wed, 6 Jun 2018 22:51:55 +0000 (15:51 -0700)
committerYann Collet <cyan@fb.com>
Wed, 6 Jun 2018 22:51:55 +0000 (15:51 -0700)
NEWS
doc/zstd_manual.html
lib/zstd.h

diff --git a/NEWS b/NEWS
index 9e903e6bcb3b542f218eb87ac72a9f082d5a589e..e3bfb242d1b84bac9f054abba101cdfd189a4003 100644 (file)
--- 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
index 3d107746b178ff9d117715e9f9804c2cfc7216a6..3dee74a3d7cfc9c084d9c9cfc4e5e0dc0ea0d8b4 100644 (file)
@@ -1,10 +1,10 @@
 <html>
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
-<title>zstd 1.3.4 Manual</title>
+<title>zstd 1.3.5 Manual</title>
 </head>
 <body>
-<h1>zstd 1.3.4 Manual</h1>
+<h1>zstd 1.3.5 Manual</h1>
 <hr>
 <a name="Contents"></a><h2>Contents</h2>
 <ol>
index 6f4b071e6cdc24bd5f45199e2f43bb82b7b7e16f..8f42ff81b97d812e0390c8d4e36c39140c697538 100644 (file)
@@ -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 */