aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlording <[email protected]>2023-06-22 09:48:10 +0000
committerlording <[email protected]>2023-06-22 09:48:10 +0000
commit3e502fe69b5151fd963f38b55b15f67fa698deb9 (patch)
treefb74c9ee127ff3c3fd54501e399c5be9d69c92cf /src
parentd2d3dfa277e7d2a22ebbaf9b47316363035ed500 (diff)
parent9499e12469c7ebc481f73280f7a678415f44561b (diff)
downloadziglings-3e502fe69b5151fd963f38b55b15f67fa698deb9.tar.xz
ziglings-3e502fe69b5151fd963f38b55b15f67fa698deb9.zip
Merge branch 'main' into refactor-var-to-const
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 a014b24..951899a 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.3295";
+const needed_version_str = "0.11.0-dev.3747";
fn isCompatible() bool {
if (!@hasDecl(builtin, "zig_version") or !@hasDecl(std, "SemanticVersion")) {