From 34dafffc6208d508b3fa63cc2c7bfe117312d91a Mon Sep 17 00:00:00 2001 From: Yorhel <git@yorhel.nl> Date: Mon, 17 Oct 2022 12:37:59 +0200 Subject: [PATCH] Version 2.2 --- ChangeLog | 7 +++++++ src/main.zig | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 94f555b..3a3eedb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,13 @@ # SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl> # SPDX-License-Identifier: MIT +2.2 - 2022-10-17 + - Still requires Zig 0.9.0 or 0.9.1 + - (breaking) Wildcards in exclude patterns don't cross directory boundary anymore + - Improve exclude pattern matching performance + - Set full background in default dark-bg color scheme + - Fix broken JSON export when a filename contains control characters below 0x10 + 2.1.2 - 2022-04-28 - Still requires Zig 0.9.0 or 0.9.1 - Fix possible crash on shortening file names with unicode variation diff --git a/src/main.zig b/src/main.zig index 593cb04..820136d 100644 --- a/src/main.zig +++ b/src/main.zig @@ -1,7 +1,7 @@ // SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl> // SPDX-License-Identifier: MIT -pub const program_version = "2.1.2"; +pub const program_version = "2.2"; const std = @import("std"); const model = @import("model.zig"); -- GitLab