Skip to content

Commit

Permalink
release: 0.9.1
Browse files Browse the repository at this point in the history
This fixes two panics
  • Loading branch information
natecraddock committed Feb 7, 2024
1 parent adf8717 commit 6d03a40
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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.9.0",
.version = "0.9.1",
.dependencies = .{
.ziglyph = .{
.url = "https://codeberg.org/dude_the_builder/ziglyph/archive/v0.11.1.tar.gz",
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 "2023-09-30" "zf 0.9.0"
.TH ZF 1 "2024-02-06" "zf 0.9.1"

.SH NAME
zf -\ a commandline fuzzy finder that prioritizes matches on filenames
Expand Down
2 changes: 1 addition & 1 deletion src/opts.zig
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const std = @import("std");
const Allocator = mem.Allocator;
const File = std.fs.File;

const version = "0.9.0";
const version = "0.9.1";
const version_str = std.fmt.comptimePrint("zf {s} Nathan Craddock", .{version});

const help =
Expand Down

0 comments on commit 6d03a40

Please sign in to comment.