diff --git a/build.zig b/build.zig index 293621e545e558fbdf1af1c3abb9d059090ebf25..e5e80b42a33bdd70afc858bdc59c89cb23cf7f5c 100644 --- a/build.zig +++ b/build.zig @@ -215,7 +215,7 @@ pub fn build(b: *Builder) !void { switch (mem.count(u8, git_describe, "-")) { 0 => { - // Tagged release version (e.g. 0.9.0). + // Tagged release version (e.g. 0.10.0). if (!mem.eql(u8, git_describe, version_string)) { std.debug.print("Zig version '{s}' does not match Git tag '{s}'\n", .{ version_string, git_describe }); std.process.exit(1); @@ -223,7 +223,7 @@ pub fn build(b: *Builder) !void { break :v version_string; }, 2 => { - // Untagged development build (e.g. 0.9.0-dev.2025+ecf0050a9). + // Untagged development build (e.g. 0.10.0-dev.2025+ecf0050a9). var it = mem.split(u8, git_describe, "-"); const tagged_ancestor = it.first(); const commit_height = it.next().?; diff --git a/doc/langref.html.in b/doc/langref.html.in index 7cf3631aa53c753b762b6e19d3c508bc27f2472d..4097c7b67a213c686284defcb9e339380dce4d00 100644 --- a/doc/langref.html.in +++ b/doc/langref.html.in @@ -317,6 +317,7 @@ 0.7.1 | 0.8.1 | 0.9.1 | + 0.10.0 | master