aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorManlio Perillo <[email protected]>2023-04-12 18:41:40 +0200
committerManlio Perillo <[email protected]>2023-04-12 18:50:30 +0200
commitbc98057d669c3256c3820bb18ca88d166426da23 (patch)
treefe78dc817a3af702fe277f5331f4443e0467d967 /src
parent1ccc86edd694c3a6e05cb058cc2ca63e2525f5f9 (diff)
downloadziglings-bc98057d669c3256c3820bb18ca88d166426da23.tar.xz
ziglings-bc98057d669c3256c3820bb18ca88d166426da23.zip
Update the code to the new zig version
Update the code to the breaking change in ziglang commit 60eabc0ec (std.Build.CompileStep: remove run() and install()) Update the zig version in the README.md file.
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")) {