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 @@ -168,15 +168,15 @@ pub fn build(b: *Builder) !void {
168
168
169
169
switch (mem .count (u8 , git_describe , "-" )) {
170
170
0 = > {
171
- // Tagged release version (e.g. 0.7 .0).
171
+ // Tagged release version (e.g. 0.8 .0).
172
172
if (! mem .eql (u8 , git_describe , version_string )) {
173
173
std .debug .print ("Zig version '{s}' does not match Git tag '{s}'\n " , .{ version_string , git_describe });
174
174
std .process .exit (1 );
175
175
}
176
176
break :v version_string ;
177
177
},
178
178
2 = > {
179
- // Untagged development build (e.g. 0.7 .0-684-gbbe2cca1a).
179
+ // Untagged development build (e.g. 0.8 .0-684-gbbe2cca1a).
180
180
var it = mem .split (git_describe , "-" );
181
181
const tagged_ancestor = it .next () orelse unreachable ;
182
182
const commit_height = it .next () orelse unreachable ;
Original file line number Diff line number Diff line change 194
194
<a href="https://ziglang.org/documentation/0.5.0/">0.5.0</a> |
195
195
<a href="https://ziglang.org/documentation/0.6.0/">0.6.0</a> |
196
196
<a href="https://ziglang.org/documentation/0.7.0/">0.7.0</a> |
197
+ <a href="https://ziglang.org/documentation/0.8.0/">0.8.0</a> |
197
198
master
198
199
<h1>Contents</h1>
199
200
{#nav#}
You can’t perform that action at this time.
0 commit comments