mirror of
https://codeberg.org/ziglings/exercises.git
synced 2026-09-11 14:28:55 +00:00
add build.zig.zon file with minimum_zig_version
This commit is contained in:
committed by
Chris Boesch
parent
a78605357e
commit
072387a5b6
@@ -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;
|
||||
|
||||
@@ -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",
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user