Version 2.8.1

This commit is contained in:
Yorhel 2025-04-28 12:51:15 +02:00
parent beac59fb12
commit 653c3bfe70
3 changed files with 8 additions and 2 deletions

View file

@ -1,6 +1,12 @@
# SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
# 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

2
ncdu.1
View file

@ -1,6 +1,6 @@
.\" SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
.\" SPDX-License-Identifier: MIT
.Dd March 5, 2025
.Dd April 28, 2025
.Dt NCDU 1
.Os
.Sh NAME

View file

@ -1,7 +1,7 @@
// SPDX-FileCopyrightText: Yorhel <projects@yorhel.nl>
// 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");