File tree 2 files changed +3
-2
lines changed
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 {
215
215
216
216
switch (mem .count (u8 , git_describe , "-" )) {
217
217
0 = > {
218
- // Tagged release version (e.g. 0.9 .0).
218
+ // Tagged release version (e.g. 0.10 .0).
219
219
if (! mem .eql (u8 , git_describe , version_string )) {
220
220
std .debug .print ("Zig version '{s}' does not match Git tag '{s}'\n " , .{ version_string , git_describe });
221
221
std .process .exit (1 );
222
222
}
223
223
break :v version_string ;
224
224
},
225
225
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).
227
227
var it = mem .split (u8 , git_describe , "-" );
228
228
const tagged_ancestor = it .first ();
229
229
const commit_height = it .next ().? ;
Original file line number Diff line number Diff line change 317
317
<a href="https://ziglang.org/documentation/0.7.1/">0.7.1</a> |
318
318
<a href="https://ziglang.org/documentation/0.8.1/">0.8.1</a> |
319
319
<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> |
320
321
master
321
322
</nav>
322
323
<nav aria-labelledby="table-of-contents">
You can’t perform that action at this time.
0 commit comments