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 @@ -168,15 +168,15 @@ pub fn build(b: *Builder) !void {
168168
169169 switch (mem .count (u8 , git_describe , "-" )) {
170170 0 = > {
171- // Tagged release version (e.g. 0.7 .0).
171+ // Tagged release version (e.g. 0.8 .0).
172172 if (! mem .eql (u8 , git_describe , version_string )) {
173173 std .debug .print ("Zig version '{s}' does not match Git tag '{s}'\n " , .{ version_string , git_describe });
174174 std .process .exit (1 );
175175 }
176176 break :v version_string ;
177177 },
178178 2 = > {
179- // Untagged development build (e.g. 0.7 .0-684-gbbe2cca1a).
179+ // Untagged development build (e.g. 0.8 .0-684-gbbe2cca1a).
180180 var it = mem .split (git_describe , "-" );
181181 const tagged_ancestor = it .next () orelse unreachable ;
182182 const commit_height = it .next () orelse unreachable ;
Original file line number Diff line number Diff line change 194194 <a href="https://ziglang.org/documentation/0.5.0/">0.5.0</a> |
195195 <a href="https://ziglang.org/documentation/0.6.0/">0.6.0</a> |
196196 <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> |
197198 master
198199 <h1>Contents</h1>
199200 {#nav#}
You can’t perform that action at this time.
0 commit comments