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 @@ -222,15 +222,15 @@ pub fn build(b: *Builder) !void {
222
222
223
223
switch (mem .count (u8 , git_describe , "-" )) {
224
224
0 = > {
225
- // Tagged release version (e.g. 0.8 .0).
225
+ // Tagged release version (e.g. 0.9 .0).
226
226
if (! mem .eql (u8 , git_describe , version_string )) {
227
227
std .debug .print ("Zig version '{s}' does not match Git tag '{s}'\n " , .{ version_string , git_describe });
228
228
std .process .exit (1 );
229
229
}
230
230
break :v version_string ;
231
231
},
232
232
2 = > {
233
- // Untagged development build (e.g. 0.8 .0-684-gbbe2cca1a ).
233
+ // Untagged development build (e.g. 0.9 .0-dev.2025+ecf0050a9 ).
234
234
var it = mem .split (u8 , git_describe , "-" );
235
235
const tagged_ancestor = it .next () orelse unreachable ;
236
236
const commit_height = it .next () orelse unreachable ;
Original file line number Diff line number Diff line change 316
316
<a href="https://ziglang.org/documentation/0.6.0/">0.6.0</a> |
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
+ <a href="https://ziglang.org/documentation/0.9.0/">0.9.0</a> |
319
320
master
320
321
</nav>
321
322
<nav aria-labelledby="table-of-contents">
You can’t perform that action at this time.
0 commit comments