aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/compat.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-06-26 23:43:39 +0200
committerChris Boesch <chrboesch@noreply.codeberg.org>2023-06-26 23:43:39 +0200
commita5a36337e88a15befbb814cdd14a4801e44f6673 (patch)
tree026ae50af63d732bb862f8a5b92dbce86af405ea /src/compat.zig
parentc3aed336e70392e33dfebf32489f803bf6736ab9 (diff)
Revised exercises due to the changes of Zig version 0.11.0-dev.3853
Diffstat (limited to 'src/compat.zig')
-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")) {