From dea6914aaa615c91c0e23ce3c4d4dfb2095de2b0 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sun, 19 Apr 2026 11:25:59 -0700 Subject: [PATCH] bootstrap.c: fix zig2 version This should have been part of the "start the release cycle" commit. --- bootstrap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.c b/bootstrap.c index cc40670d4a..bc7ba46ed7 100644 --- a/bootstrap.c +++ b/bootstrap.c @@ -168,7 +168,7 @@ int main(int argc, char **argv) { if (f == NULL) panic("unable to open config.zig for writing"); - const char *zig_version = "0.14.0-dev.bootstrap"; + const char *zig_version = "0.17.0-dev.bootstrap"; int written = fprintf(f, "pub const have_llvm = false;\n"