summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-05-01 18:58:07 +0200
committerGitHub <noreply@github.com>2023-05-01 18:58:07 +0200
commite9d0ab3784b163b94c5053254ed0a85b47694972 (patch)
treee4ba580d8f44bece9d003ca45aa0786a7b21fa81 /src
parent2e2924abdb592f536893a0e3ec526e3dd4145de6 (diff)
parenta86d4c279577cb263d83f33d9d9606eeafda05ab (diff)
Merge pull request #270 from perillo/improve-exercise-type
Improve the Exercise type
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 cd7f3e5..42ecb6b 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.2560";
+const needed_version_str = "0.11.0-dev.2704";
fn isCompatible() bool {
if (!@hasDecl(builtin, "zig_version") or !@hasDecl(std, "SemanticVersion")) {