From 23c59f287485b4ce35c31fcfcceb0b9afa7af662 Mon Sep 17 00:00:00 2001 From: Yorhel Date: Tue, 21 Dec 2021 10:56:49 +0100 Subject: Version 2.0 I'm tagging this as a "stable" 2.0 release because the 2.0-beta# numbering will get confusing when I'm working on new features and fixes. It's still only usable for people who can use the particular Zig version that's required (0.9.0 currently) and it will certainly break on different Zig versions. But once you have a working binary for a supported arch, it's perfectly stable. --- ChangeLog | 4 ++++ src/main.zig | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ba46bed..9d6a98d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,10 @@ # SPDX-FileCopyrightText: 2021 Yoran Heling # SPDX-License-Identifier: MIT +2.0 - 2021-12-21 + - Requires Zig 0.9.0 + - That's the only change. + 2.0-beta3 - 2021-11-09 - Requires Zig 0.8 or 0.8.1 - Add lots of new CLI flags to configure ncdu diff --git a/src/main.zig b/src/main.zig index d98a4fc..4e4cadf 100644 --- a/src/main.zig +++ b/src/main.zig @@ -1,7 +1,7 @@ // SPDX-FileCopyrightText: 2021 Yoran Heling // SPDX-License-Identifier: MIT -pub const program_version = "2.0-beta3"; +pub const program_version = "2.0"; const std = @import("std"); const model = @import("model.zig"); -- cgit v1.2.3