summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--lib/lz4hc.h4
2 files changed, 4 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 32fb613..ab95149 100644
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,8 @@
-v1.7.6
+v1.8.0
cli : fix : do not modify /dev/null permissions, reported by @Maokaman1
cli : added GNU separator -- specifying that all following arguments are files
API : added LZ4_compress_HC_destSize(), by Oleg (@remittor)
+API : added LZ4F_resetDecompressionContext()
API : lz4frame : negative compression levels trigger fast acceleration
API : fix : expose obsolete decoding functions, reported by Chen Yufei
build : dragonFlyBSD, OpenBSD, NetBSD supported
diff --git a/lib/lz4hc.h b/lib/lz4hc.h
index c4284c0..b63c825 100644
--- a/lib/lz4hc.h
+++ b/lib/lz4hc.h
@@ -237,9 +237,9 @@ LZ4LIB_API LZ4_DEPRECATED("use LZ4_resetStreamHC() instead") int LZ4_resetStr
#ifndef LZ4_HC_SLO_098092834
#define LZ4_HC_SLO_098092834
-/*! LZ4_compress_HC_destSize() :
+/*! LZ4_compress_HC_destSize() : v1.8.0 (experimental)
* Will try to compress as much data from `src` as possible
- * that can fit in `targetDstSize` budget.
+ * that can fit into `targetDstSize` budget.
* Result is provided in 2 parts :
* @return : the number of bytes written into 'dst'
* or 0 if compression fails.