diff --git a/ChangeLog b/ChangeLog index 3148b1c..cc5b132 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,15 @@ # SPDX-FileCopyrightText: Yorhel # SPDX-License-Identifier: MIT +2.7 - 2024-11-19 + - Still requires Zig 0.12 or 0.13 + - Support transparent reading/writing of zstandard-compressed JSON + - Add `--compress` and `--export-block-size` options + - Perform tilde expansion on paths in the config file + - Fix JSON import of escaped UTF-16 surrogate pairs + - Fix incorrect field in root item when exporting to the binary format + - Add -Dstrip build flag + 2.6 - 2024-09-27 - Still requires Zig 0.12 or 0.13 - Add dependency on libzstd diff --git a/ncdu.1 b/ncdu.1 index 3f9e341..1755612 100644 --- a/ncdu.1 +++ b/ncdu.1 @@ -1,6 +1,6 @@ .\" SPDX-FileCopyrightText: Yorhel .\" SPDX-License-Identifier: MIT -.Dd October 26, 2024 +.Dd November 19, 2024 .Dt NCDU 1 .Os .Sh NAME diff --git a/src/main.zig b/src/main.zig index 703952c..7575c1b 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.6"; +pub const program_version = "2.7"; const std = @import("std"); const model = @import("model.zig");