zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit dea6914aaa615c91c0e23ce3c4d4dfb2095de2b0 (tree)
parent b0f6889d121cae004687e381cd7b0d8156490433
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Sun, 19 Apr 2026 11:25:59 -0700

bootstrap.c: fix zig2 version

This should have been part of the "start the release cycle" commit.

Diffstat:
Mbootstrap.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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"