summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2022-10-17 12:37:59 +0200
committerYorhel <git@yorhel.nl>2022-10-17 12:37:59 +0200
commit34dafffc6208d508b3fa63cc2c7bfe117312d91a (patch)
treedfb7f456943f5c514798a99da48c8e63b48732a0
parent1548f9276f48b9d7a378b2e491609fc947f93e6c (diff)
Version 2.2v2.2
-rw-r--r--ChangeLog7
-rw-r--r--src/main.zig2
2 files changed, 8 insertions, 1 deletions
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");