diff --git a/build.zig b/build.zig index a63f6f9..e4037d8 100644 --- a/build.zig +++ b/build.zig @@ -4,7 +4,7 @@ pub fn build(b: *std.Build) void { const target = b.standardTargetOptions(.{}); const optimize = b.standardOptimizeOption(.{}); const root_source_file = std.Build.LazyPath.relative("src/main.zig"); - const version = std.SemanticVersion{ .major = 0, .minor = 2, .patch = 0 }; + const version = std.SemanticVersion{ .major = 0, .minor = 2, .patch = 1 }; // Dependencies const clap_dep = b.dependency("clap", .{ diff --git a/build.zig.zon b/build.zig.zon index 0da55ab..156d2b1 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = "liza", - .version = "0.2.0", + .version = "0.2.1", .dependencies = .{ .clap = .{ .url = "https://github.com/Hejsil/zig-clap/archive/209ba4d.tar.gz",