From 2b4c1ca03e796d3ec6389c223ae21dc5e3a468a1 Mon Sep 17 00:00:00 2001 From: Yorhel Date: Wed, 5 Mar 2025 11:10:11 +0100 Subject: [PATCH] Version 2.8 --- ChangeLog | 6 ++++++ README.md | 2 +- ncdu.1 | 2 +- src/main.zig | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index cc5b132..c10fde2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,12 @@ # SPDX-FileCopyrightText: Yorhel # SPDX-License-Identifier: MIT +2.8 - 2025-03-05 + - Now requires Zig 0.14 + - Add support for @-prefixed lines to ignore errors in config file + - List all supported options in `--help` + - Use `kB` instead of `KB` in `--si` mode + 2.7 - 2024-11-19 - Still requires Zig 0.12 or 0.13 - Support transparent reading/writing of zstandard-compressed JSON diff --git a/README.md b/README.md index 03ed71d..b0282ff 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ C version (1.x). ## Requirements -- Zig 0.12 or 0.13. +- Zig 0.14 - Some sort of POSIX-like OS - ncurses - libzstd diff --git a/ncdu.1 b/ncdu.1 index 89db169..ebadd2e 100644 --- a/ncdu.1 +++ b/ncdu.1 @@ -1,6 +1,6 @@ .\" SPDX-FileCopyrightText: Yorhel .\" SPDX-License-Identifier: MIT -.Dd November 19, 2024 +.Dd March 5, 2025 .Dt NCDU 1 .Os .Sh NAME diff --git a/src/main.zig b/src/main.zig index 45041ed..38d0893 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.7"; +pub const program_version = "2.8"; const std = @import("std"); const model = @import("model.zig");