From 653c3bfe70bd5aec1b2bd3e6ad5d9ae2f780037a Mon Sep 17 00:00:00 2001 From: Yorhel Date: Mon, 28 Apr 2025 12:51:15 +0200 Subject: [PATCH] Version 2.8.1 --- ChangeLog | 6 ++++++ ncdu.1 | 2 +- src/main.zig | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index c10fde2..4683661 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,12 @@ # SPDX-FileCopyrightText: Yorhel # SPDX-License-Identifier: MIT +2.8.1 - 2025-04-28 + - Still requires Zig 0.14 + - Fix integer overflow in binary export + - Fix crash when `fstatat()` returns EINVAL + - Minor build system improvements + 2.8 - 2025-03-05 - Now requires Zig 0.14 - Add support for @-prefixed lines to ignore errors in config file diff --git a/ncdu.1 b/ncdu.1 index ebadd2e..25326e9 100644 --- a/ncdu.1 +++ b/ncdu.1 @@ -1,6 +1,6 @@ .\" SPDX-FileCopyrightText: Yorhel .\" SPDX-License-Identifier: MIT -.Dd March 5, 2025 +.Dd April 28, 2025 .Dt NCDU 1 .Os .Sh NAME diff --git a/src/main.zig b/src/main.zig index 38d0893..1a1e10c 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"; +pub const program_version = "2.8.1"; const std = @import("std"); const model = @import("model.zig");