File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -215,15 +215,15 @@ pub fn build(b: *Builder) !void {
215215
216216 switch (mem .count (u8 , git_describe , "-" )) {
217217 0 = > {
218- // Tagged release version (e.g. 0.9 .0).
218+ // Tagged release version (e.g. 0.10 .0).
219219 if (! mem .eql (u8 , git_describe , version_string )) {
220220 std .debug .print ("Zig version '{s}' does not match Git tag '{s}'\n " , .{ version_string , git_describe });
221221 std .process .exit (1 );
222222 }
223223 break :v version_string ;
224224 },
225225 2 = > {
226- // Untagged development build (e.g. 0.9 .0-dev.2025+ecf0050a9).
226+ // Untagged development build (e.g. 0.10 .0-dev.2025+ecf0050a9).
227227 var it = mem .split (u8 , git_describe , "-" );
228228 const tagged_ancestor = it .first ();
229229 const commit_height = it .next ().? ;
Original file line number Diff line number Diff line change 317317 <a href="https://ziglang.org/documentation/0.7.1/">0.7.1</a> |
318318 <a href="https://ziglang.org/documentation/0.8.1/">0.8.1</a> |
319319 <a href="https://ziglang.org/documentation/0.9.1/">0.9.1</a> |
320+ <a href="https://ziglang.org/documentation/0.10.0/">0.10.0</a> |
320321 master
321322 </nav>
322323 <nav aria-labelledby="table-of-contents">
You can’t perform that action at this time.
0 commit comments