aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChris Boesch <[email protected]>2023-06-27 00:15:48 +0200
committerGitHub <[email protected]>2023-06-27 00:15:48 +0200
commit1070fe5b4044b34cf86d9c0b79038cbe2aab637b (patch)
tree77168cd69915ac3e382b1c640cda2d5162d12c50 /src
parent7ad0f06a07081b0efb37cb3061b013d426e7ab92 (diff)
parenta5a36337e88a15befbb814cdd14a4801e44f6673 (diff)
downloadziglings-1070fe5b4044b34cf86d9c0b79038cbe2aab637b.tar.xz
ziglings-1070fe5b4044b34cf86d9c0b79038cbe2aab637b.zip
Merge pull request #333 from ratfactor/v3853
Revised exercises due to the changes of Zig version 0.11.0-dev.3853
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 951899a..2c7fb08 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.3747";
+const needed_version_str = "0.11.0-dev.3853";
fn isCompatible() bool {
if (!@hasDecl(builtin, "zig_version") or !@hasDecl(std, "SemanticVersion")) {