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
+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",
},
}