From c1108f3f3b446c5ecfc20d2192875242a270a879 Mon Sep 17 00:00:00 2001 From: Yves Biener Date: Wed, 12 Mar 2025 20:27:00 +0100 Subject: [PATCH] fix: correct build.zig.zog contents with zig version update --- build.zig.zon | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build.zig.zon b/build.zig.zon index 26fd55e..65ddfd6 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,5 +1,6 @@ .{ - .name = "zlog", + .name = .zlog, + .fingerprint = 0x55b82e3347a594e8, // version name should match the zig version except for the last number, // which stands for the version inside a given zig version .version = "0.13.0", @@ -9,7 +10,7 @@ .hash = "12204e2fe893ee5c62e8075f67c55e2e380e7e3c2f77bdaf2e36eff0b02718cf6f6b", }, }, - .minimum_zig_version = "0.13.0", + .minimum_zig_version = "0.14.0", .paths = .{ "build.zig", "build.zig.zon",