From 5b96a48f531f028f68333a862dd32809a5de4658 Mon Sep 17 00:00:00 2001 From: Yorhel Date: Thu, 1 May 2025 15:00:06 +0200 Subject: [PATCH] Version 2.8.2 --- ChangeLog | 4 ++++ ncdu.1 | 2 +- src/main.zig | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4683661..06c806c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,10 @@ # SPDX-FileCopyrightText: Yorhel # SPDX-License-Identifier: MIT +2.8.2 - 2025-05-01 + - Still requires Zig 0.14 + - Fix a build error on MacOS + 2.8.1 - 2025-04-28 - Still requires Zig 0.14 - Fix integer overflow in binary export diff --git a/ncdu.1 b/ncdu.1 index 25326e9..bcb7a55 100644 --- a/ncdu.1 +++ b/ncdu.1 @@ -1,6 +1,6 @@ .\" SPDX-FileCopyrightText: Yorhel .\" SPDX-License-Identifier: MIT -.Dd April 28, 2025 +.Dd May 1, 2025 .Dt NCDU 1 .Os .Sh NAME diff --git a/src/main.zig b/src/main.zig index 1a1e10c..63aa386 100644 --- a/src/main.zig +++ b/src/main.zig @@ -1,7 +1,7 @@ // SPDX-FileCopyrightText: Yorhel // SPDX-License-Identifier: MIT -pub const program_version = "2.8.1"; +pub const program_version = "2.8.2"; const std = @import("std"); const model = @import("model.zig");