1 Commits

Author SHA1 Message Date
Andrew Kelley 072387a5b6 add build.zig.zon file with minimum_zig_version 2026-09-02 00:12:57 +02:00
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 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 {
const required_zig = "0.17.0-dev.607";
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",
},
}