mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-13 01:08:41 -09:00
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.
This commit is contained in:
parent
6a68cd9b89
commit
23c59f2874
2 changed files with 5 additions and 1 deletions
|
|
@ -1,6 +1,10 @@
|
||||||
# SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
# SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
||||||
# SPDX-License-Identifier: MIT
|
# 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
|
2.0-beta3 - 2021-11-09
|
||||||
- Requires Zig 0.8 or 0.8.1
|
- Requires Zig 0.8 or 0.8.1
|
||||||
- Add lots of new CLI flags to configure ncdu
|
- Add lots of new CLI flags to configure ncdu
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
// SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
// SPDX-FileCopyrightText: 2021 Yoran Heling <projects@yorhel.nl>
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
pub const program_version = "2.0-beta3";
|
pub const program_version = "2.0";
|
||||||
|
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const model = @import("model.zig");
|
const model = @import("model.zig");
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue