all: update Zig to version 0.11.0-dev.4407+4d7dd1689

Signed-off-by: Wrench[bot] <wrench@hexops.com>
This commit is contained in:
Wrench[bot] 2023-08-02 20:43:12 -07:00 committed by Stephen Gutekanst
parent c26cfec0b6
commit 48aa27fc77
3 changed files with 10 additions and 10 deletions

View file

@ -178,7 +178,7 @@ fn sdkPath(comptime suffix: []const u8) []const u8 {
}
comptime {
const min_zig = std.SemanticVersion.parse("0.11.0-dev.3947+89396ff02") catch unreachable;
const min_zig = std.SemanticVersion.parse("0.11.0-dev.4407+4d7dd1689") catch unreachable;
if (builtin.zig_version.order(min_zig) == .lt) {
@compileError(std.fmt.comptimePrint("Your Zig version v{} does not meet the minimum build requirement of v{}", .{ builtin.zig_version, min_zig }));
}