From ddc835762c1276c781295164a2bb3e42b35670df Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Fri, 7 Apr 2023 18:18:15 +0200 Subject: [PATCH] Insert current zig version for compatiblity! This is primarily to make users aware that there has been a change in the call for individual exercises. --- src/compat.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compat.zig b/src/compat.zig index 34dfc76..1adf8c0 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.2157"; +const needed_version_str = "0.11.0-dev.2401"; fn isCompatible() bool { if (!@hasDecl(builtin, "zig_version") or !@hasDecl(std, "SemanticVersion")) {