aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2017-12-29 17:48:45 +0200
committerLasse Collin <lasse.collin@tukaani.org>2017-12-29 17:48:45 +0200
commit339ead11e3af0fe4690fe8956ed399f6b278e0b3 (patch)
treeb86896b0cc1612a078cea0376203835b781cc4dd
parent01b8f6511608dd4c119d6bc6d00550352162fbf7 (diff)
downloadxz-java-339ead11e3af0fe4690fe8956ed399f6b278e0b3.tar.gz
Add NEWS for 1.7.
-rw-r--r--NEWS12
1 files changed, 12 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index c491973..800d224 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,18 @@
XZ for Java release notes
=========================
+1.7 (2017-12-29)
+
+ * Fix LZMA2InputStream.available() which could return a too high
+ value in case of uncompressed LZMA2 chunks. This incorrect
+ value was visible via other available() methods too, for example,
+ XZInputStream.available().
+
+ * Add the ArrayCache API. It's a pool-like API to reuse large byte
+ and int arrays between compressor and decompressor instances.
+ If you are (de)compressing many tiny files in a row, taking
+ advantage of this API can improve performance significantly.
+
1.6 (2016-11-27)
* Fix LZMA2Options.getInputStream to work with a preset dictionary.