add build.zig.zon file with minimum_zig_version

This commit is contained in:
Andrew Kelley
2026-08-30 11:59:56 -07:00
committed by Chris Boesch
parent a78605357e
commit 072387a5b6
2 changed files with 15 additions and 3 deletions
-3
View File
@@ -3,9 +3,6 @@ const builtin = @import("builtin");
const Build = std.Build; const Build = std.Build;
const print = std.debug.print; const print = std.debug.print;
// When changing this version, be sure to also update README.md in two places:
// 1) Getting Started
// 2) Version Changes
comptime { comptime {
const required_zig = "0.17.0-dev.607"; const required_zig = "0.17.0-dev.607";
const current_zig = builtin.zig_version; const current_zig = builtin.zig_version;
+15
View File
@@ -0,0 +1,15 @@
.{
.name = .ziglings,
.version = "1.0.0",
.fingerprint = 0xe8787dec1d2ef9f8,
// When changing this version, be sure to also update:
// * README.md
// - Getting Started
// - Version Changes
// * build.zig:
// - comptime block at the top
.minimum_zig_version = "0.17.0-dev.607",
.paths = .{
"README.md",
},
}