aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-04-07 18:18:15 +0200
committerChris Boesch <chrboesch@noreply.codeberg.org>2023-04-07 18:18:15 +0200
commitddc835762c1276c781295164a2bb3e42b35670df (patch)
treef9af3638a20d22e3f33b97ca4cbab237ef41c619 /src
parent0fd80d6cba83783e10e8a63761afec268f3febd6 (diff)
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.
Diffstat (limited to 'src')
-rw-r--r--src/compat.zig2
1 files changed, 1 insertions, 1 deletions
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")) {