diff --git a/ChangeLog b/ChangeLog index 1848dd2..c6a8804 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,13 @@ # SPDX-FileCopyrightText: 2021-2023 Yoran Heling # SPDX-License-Identifier: MIT +2.3 - 2023-08-04 + - Now requires Zig 0.11 + - Add --(enable|disable)-natsort options + - Add indicator to apparent size/disk usage selection in the footer + - Fix build on armv7l (hopefully) + - Minor build system additions + 2.2.2 - 2023-01-19 - Now requires Zig 0.10 or 0.10.1 - That's it, pretty much. diff --git a/src/main.zig b/src/main.zig index 60ec8eb..d9f9238 100644 --- a/src/main.zig +++ b/src/main.zig @@ -1,7 +1,7 @@ // SPDX-FileCopyrightText: 2021-2023 Yoran Heling // SPDX-License-Identifier: MIT -pub const program_version = "2.2.2"; +pub const program_version = "2.3"; const std = @import("std"); const model = @import("model.zig");