From e954b57125a40dc049121dc9e7c712f889b55a58 Mon Sep 17 00:00:00 2001 From: Kamila Szewczyk <27734421+kspalaiologos@users.noreply.github.com> Date: Sun, 6 Aug 2023 10:20:54 +0200 Subject: [PATCH] Update NEWS --- NEWS | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/NEWS b/NEWS index 9498237..57a0ba7 100644 --- a/NEWS +++ b/NEWS @@ -86,3 +86,14 @@ v1.3.1: * Explicitly disable `-march=native` for releases. * Fix a bug in the tool reported by Adam Borowski regarding -t/-d input buffer checks. * Fix an issue with the current input offset not being taken into account in bz3_compress. + +v1.3.2: +* Add the `-r` option ("recovery"). If a file fails to decompress fully (e.g. due to a CRC error), ignore it and write the + file regardless. +* Add preliminary CMake support. +* Fix the include guard macro name to work with pedantic compilers. +* Fix the shift direction in the crc32 check function. Because of a programming mistake, v1.3.0 and v1.3.1 + introduced a breaking change to the CRC calculation code. The change has been reverted in this release. + While the archives created with these versions of bzip3 will fail to regularly decompress due to a checksum + error, using the recovery option as `bzip3 -rd` to decompress will + restore their original contents.