diff --git a/README.md b/README.md index 5d2b368..67ce5b1 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Finally it's worth noting that ZBA uses a TOML config file it'll store in your O ## Compiling -Most recently built on Zig [v0.11.0-dev.3395+1e7dcaa3a](https://github.com/ziglang/zig/tree/1e7dcaa3a) +Most recently built on Zig [v0.11.0-dev.4003+c6aa29b6f](https://github.com/ziglang/zig/tree/c6aa29b6f) ### Dependencies diff --git a/build.zig b/build.zig index 65aa6a5..921e47d 100644 --- a/build.zig +++ b/build.zig @@ -6,7 +6,7 @@ const zgui = @import("lib/zgui/build.zig"); pub fn build(b: *std.Build) void { // Minimum Zig Version - const min_ver = std.SemanticVersion.parse("0.11.0-dev.3395+1e7dcaa3a") catch return; // https://github.com/ziglang/zig/commit/34865d693 + const min_ver = std.SemanticVersion.parse("0.11.0-dev.4003+c6aa29b6f") catch return; // https://github.com/ziglang/zig/commit/c6aa29b6f if (builtin.zig_version.order(min_ver).compare(.lt)) { std.log.err("{s}", .{b.fmt("Zig v{} does not meet the minimum version requirement. (Zig v{})", .{ builtin.zig_version, min_ver })}); std.os.exit(1);