From 256fe06b610529cb242b72291320dfbfca657d6c Mon Sep 17 00:00:00 2001 From: Nathan Craddock Date: Mon, 28 Oct 2024 21:26:41 -0600 Subject: [PATCH] Release 0.10.1 A small bugfix release primarily to fix the ctrl-p keybinding --- CHANGELOG.md | 8 ++++++++ build.zig.zon | 2 +- doc/zf.1 | 2 +- src/tui/opts.zig | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dc4598..9d25e11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.10.1 + +A small bugfix release to fix the keybindings so that ctrl-p moves the selection up. + +Additionally: +* adds libVaxis as a lazyDependency +* adds Void Linux install instruction + # 0.10.0 This release adds support for an fzf-like `--preview` option, rewrites the UI to use diff --git a/build.zig.zon b/build.zig.zon index c3b4705..390b419 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,7 +1,7 @@ .{ .name = "zf", .description = "a commandline fuzzy finder designed for filtering filepaths", - .version = "0.10.0", + .version = "0.10.1", .dependencies = .{ .vaxis = .{ .url = "git+https://github.com/rockorager/libvaxis?ref=v0.5.0#306acc7a2e366d169a504eeff83e5fbc5e359b66", diff --git a/doc/zf.1 b/doc/zf.1 index e9f9587..2e89166 100644 --- a/doc/zf.1 +++ b/doc/zf.1 @@ -1,4 +1,4 @@ -.TH ZF 1 "2024-10-01" "zf 0.10.0" +.TH ZF 1 "2024-10-28" "zf 0.10.1" .SH NAME zf -\ a commandline fuzzy finder that prioritizes matches on filenames diff --git a/src/tui/opts.zig b/src/tui/opts.zig index 0301948..076bcbc 100644 --- a/src/tui/opts.zig +++ b/src/tui/opts.zig @@ -9,7 +9,7 @@ const Allocator = mem.Allocator; const Color = @import("ui.zig").Color; const File = std.fs.File; -const version = "0.10.0"; +const version = "0.10.1"; const version_str = std.fmt.comptimePrint("zf {s} Nathan Craddock", .{version}); const help =