aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChris Boesch <[email protected]>2023-04-12 19:02:43 +0200
committerGitHub <[email protected]>2023-04-12 19:02:43 +0200
commitbf013df4bfa03de213591befe5c2b1b922712356 (patch)
tree79af9e586dc831b2b79eb8e54a9f151361fd436a /src
parent3121ebff304c729aa3bd66015d5667ad9142a487 (diff)
parentbc98057d669c3256c3820bb18ca88d166426da23 (diff)
downloadziglings-bf013df4bfa03de213591befe5c2b1b922712356.tar.xz
ziglings-bf013df4bfa03de213591befe5c2b1b922712356.zip
Merge pull request #235 from perillo/update-to-version-0.11.0-dev.2560
Update the code to the new zig version
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 1adf8c0..cd7f3e5 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.2401";
+const needed_version_str = "0.11.0-dev.2560";
fn isCompatible() bool {
if (!@hasDecl(builtin, "zig_version") or !@hasDecl(std, "SemanticVersion")) {