diff options
| author | Chris Boesch <chrboesch@noreply.codeberg.org> | 2025-07-22 00:40:06 +0200 |
|---|---|---|
| committer | Chris Boesch <chrboesch@noreply.codeberg.org> | 2025-07-22 00:40:06 +0200 |
| commit | b499788606d83aac75e82da2d32b5b7ceb3d6896 (patch) | |
| tree | 3ad156d79772517bb36ac17b259f61842855ae39 /build.zig | |
| parent | 49e73db5f5e139b610306ec6495aa6889eb83170 (diff) | |
Corrected the necessary Zig version
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ const print = std.debug.print; // 1) Getting Started // 2) Version Changes comptime { - const required_zig = "0.14.0-dev.1573"; + const required_zig = "0.15.0-dev.1092"; const current_zig = builtin.zig_version; const min_zig = std.SemanticVersion.parse(required_zig) catch unreachable; if (current_zig.order(min_zig) == .lt) { |
