all: update Zig to version 0.11.0-dev.4410+76f7b40e1

Signed-off-by: Wrench[bot] <wrench@hexops.com>
This commit is contained in:
Wrench[bot] 2023-08-03 10:54:55 -07:00 committed by Stephen Gutekanst
parent dcc0e4d429
commit 890d467b61
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.4407+4d7dd1689") catch unreachable;
const min_zig = std.SemanticVersion.parse("0.11.0-dev.4410+76f7b40e1") 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 }));
}