diff --git a/ChangeLog b/ChangeLog index 94f555b..3a3eedb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,13 @@ # SPDX-FileCopyrightText: 2021-2022 Yoran Heling # 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 // 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");