Skip to content

Commit

Permalink
release: version 0.9.2
Browse files Browse the repository at this point in the history
No changes in this version. Just tagging a new release for system
package managers to pick up that supports newer versions of Zig
  • Loading branch information
natecraddock committed Jun 23, 2024
1 parent d370da2 commit 8738b09
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# master

# 0.9.2

This release supports both Zig 0.12.0 and 0.13.0.

No changes since the last release. Just tagging a new version so package managers can build with the newest releases of Zig.

# 0.9.1

Fixes two possible crashes
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.9.2",
.dependencies = .{
.ziglyph = .{
.url = "https://codeberg.org/dude_the_builder/ziglyph/archive/b89d43d1e3fb01b6074bc1f7fc980324b04d26a5.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-06-22" "zf 0.9.2"

.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.10.0-dev";
const version = "0.9.2";
const version_str = std.fmt.comptimePrint("zf {s} Nathan Craddock", .{version});

const help =
Expand Down

0 comments on commit 8738b09

Please sign in to comment.