From bc98057d669c3256c3820bb18ca88d166426da23 Mon Sep 17 00:00:00 2001 From: Manlio Perillo Date: Wed, 12 Apr 2023 18:41:40 +0200 Subject: Update the code to the new zig version Update the code to the breaking change in ziglang commit 60eabc0ec (std.Build.CompileStep: remove run() and install()) Update the zig version in the README.md file. --- src/compat.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/compat.zig b/src/compat.zig index 1adf8c0..cd7f3e5 100644 --- a/src/compat.zig +++ b/src/compat.zig @@ -15,7 +15,7 @@ const print = if (@hasDecl(debug, "print")) debug.print else debug.warn; // When changing this version, be sure to also update README.md in two places: // 1) Getting Started // 2) Version Changes -const needed_version_str = "0.11.0-dev.2401"; +const needed_version_str = "0.11.0-dev.2560"; fn isCompatible() bool { if (!@hasDecl(builtin, "zig_version") or !@hasDecl(std, "SemanticVersion")) { -- cgit v1.2.3