diff --git a/CHANGELOG.md b/CHANGELOG.md index 3970ea1..97a2116 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/build.zig.zon b/build.zig.zon index 502d816..19519dd 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.9.2", .dependencies = .{ .ziglyph = .{ .url = "https://codeberg.org/dude_the_builder/ziglyph/archive/b89d43d1e3fb01b6074bc1f7fc980324b04d26a5.tar.gz", diff --git a/doc/zf.1 b/doc/zf.1 index 1670950..3221df8 100644 --- a/doc/zf.1 +++ b/doc/zf.1 @@ -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 diff --git a/src/opts.zig b/src/opts.zig index 3132d50..9475d6b 100644 --- a/src/opts.zig +++ b/src/opts.zig @@ -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 =