summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2017-06-12 17:54:59 (GMT)
committerYann Collet <cyan@fb.com>2017-06-12 17:54:59 (GMT)
commit139a387d179dfac91dbaeef994bbbea4d79eb9ba (patch)
treed094534eae8a576aba0b17375d842b7decb8ce13
parent0beaa356f26aa5ee9d37673a5e72d8bc751f69c2 (diff)
downloadlz4-139a387d179dfac91dbaeef994bbbea4d79eb9ba.zip
lz4-139a387d179dfac91dbaeef994bbbea4d79eb9ba.tar.gz
lz4-139a387d179dfac91dbaeef994bbbea4d79eb9ba.tar.bz2
updated NEWS
-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.