From 4df6b36713ff45c02127dc39a13009195b0c5a16 Mon Sep 17 00:00:00 2001 From: Gregory Anders Date: Sun, 18 Feb 2024 09:43:13 -0600 Subject: [PATCH] Update minimum Zig version in build.zig This is the version required to use the new std.os.O struct format from https://github.com/mitchellh/ghostty/pull/1509. --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 9545c7d1e..dec2c2657 100644 --- a/build.zig +++ b/build.zig @@ -24,7 +24,7 @@ const Command = @import("src/Command.zig"); // but we liberally update it. In the future, we'll be more careful about // using released versions so that package managers can integrate better. comptime { - const required_zig = "0.12.0-dev.2701+d18f52197"; + const required_zig = "0.12.0-dev.2711+f995c1b08"; const current_zig = builtin.zig_version; const min_zig = std.SemanticVersion.parse(required_zig) catch unreachable; if (current_zig.order(min_zig) == .lt) {