From ba7379dc184e0140b940d878c7f32caf80e56dc3 Mon Sep 17 00:00:00 2001 From: Marcus Holland-Moritz Date: Tue, 6 Feb 2024 09:54:27 +0100 Subject: [PATCH] chore: update change log --- CHANGES.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 5682f49a..18a179d7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,19 @@ # Change Log +## Version 0.9.1 - 2024-02-06 + +- (fix) Invalid UTF-8 characters in file paths would crash `mkdwarfs` + if these paths were displayed in the progress output. A possible + workaround was to disable progress output. This fix replaces any + invalid characters before displaying them. Fixes github #191. + +- (fix) The `CMakeLists.txt` would bail out as soon as it discovered + `--as-needed` in the linker flags. However, `--as-needed` is only + a problem when combined with `BUILD_SHARED_LIBS=ON`. The check has + been changed to only trigger if both conditions are met. + +- (perf) Minor speed improvements in `ricepp` compression. + ## Version 0.9.0 - 2024-02-05 - (feature) Experimental macOS support. Fixes github #132.