From f37362af36db9f88e505282c524985f422e0d6ca Mon Sep 17 00:00:00 2001 From: Yorhel Date: Tue, 25 Oct 2022 08:14:36 +0200 Subject: [PATCH] Version 2.2.1 --- ChangeLog | 4 ++++ src/main.zig | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3a3eedb..cffe7c1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,10 @@ # SPDX-FileCopyrightText: 2021-2022 Yoran Heling # SPDX-License-Identifier: MIT +2.2.1 - 2022-10-25 + - Still requires Zig 0.9.0 or 0.9.1 + - Fix bug with 'dark' and 'off' color themes on FreeBSD and MacOS + 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 diff --git a/src/main.zig b/src/main.zig index 820136d..a04d96f 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.2"; +pub const program_version = "2.2.1"; const std = @import("std"); const model = @import("model.zig");