summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2022-03-25 12:38:47 +0100
committerYorhel <git@yorhel.nl>2022-03-25 12:38:47 +0100
commit2e4f0f0bce83006e99d55047fc51f92248d5a2e3 (patch)
tree0fd1913bbe39f48d51b9dfb719af59b0244eacbf
parent5f383966a91d82394c69ea66ed64cf238bcf0ba0 (diff)
Version 2.1.1v2.1.1
-rw-r--r--ChangeLog6
-rw-r--r--README.md2
-rw-r--r--src/main.zig2
3 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 5d11cea..dfaf71e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,12 @@
# SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
# SPDX-License-Identifier: MIT
+2.1.1 - 2022-03-25
+ - Still requires Zig 0.9.0 or 0.9.1
+ - Fix potential crash when refreshing
+ - Fix typo in --graph-style=eighth-block
+ - Revert default --graph-style to hash characters
+
2.1 - 2022-02-07
- Still requires Zig 0.9.0
- Use natural sort order when sorting by file name
diff --git a/README.md b/README.md
index 03b5b94..d020a2d 100644
--- a/README.md
+++ b/README.md
@@ -19,7 +19,7 @@ C version (1.x).
## Requirements
-- Zig 0.9.0
+- Zig 0.9.0 or 0.9.1
- Some sort of POSIX-like OS
- ncurses libraries and header files
diff --git a/src/main.zig b/src/main.zig
index 2c516e7..13f6ebc 100644
--- a/src/main.zig
+++ b/src/main.zig
@@ -1,7 +1,7 @@
// SPDX-FileCopyrightText: 2021-2022 Yoran Heling <projects@yorhel.nl>
// SPDX-License-Identifier: MIT
-pub const program_version = "2.1";
+pub const program_version = "2.1.1";
const std = @import("std");
const model = @import("model.zig");