Skip to content

Commit a642552

Browse files
committed
Release 0.8.0
1 parent 2699232 commit a642552

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

build.zig

+2-2
Original file line numberDiff line numberDiff 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;

doc/langref.html.in

+1
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@
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#}

0 commit comments

Comments
 (0)