summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2021-12-21 10:56:49 +0100
committerYorhel <git@yorhel.nl>2021-12-21 10:56:51 +0100
commit23c59f287485b4ce35c31fcfcceb0b9afa7af662 (patch)
tree48cb5995e65fbaedac2c4ac141df28d38f59b216
parent6a68cd9b896cd1975d22d4a58b5c3b845e4d01f6 (diff)
Version 2.0v2.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.
-rw-r--r--ChangeLog4
-rw-r--r--src/main.zig2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ba46bed..9d6a98d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,10 @@
# SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
# 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 <projects@yorhel.nl>
// 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");