Skip to content

Commit

Permalink
Release 0.10.1
Browse files Browse the repository at this point in the history
A small bugfix release primarily to fix the ctrl-p keybinding
  • Loading branch information
natecraddock committed Oct 29, 2024
1 parent 44db0d0 commit 256fe06
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 0.10.1

A small bugfix release to fix the keybindings so that <kbd>ctrl-p</kbd> 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
Expand Down
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion doc/zf.1
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/tui/opts.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down

0 comments on commit 256fe06

Please sign in to comment.