summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-06-04 11:21:32 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-06-04 11:21:32 -0700
commita642552faf6d6cde1e8d0492685793498d689983 (patch)
tree5bf17311bdf858a1fb8b73413ae222ce9adef0ee
parent2699232c4ec6f2cc583500fbb66db5daf543cd22 (diff)
Release 0.8.00.8.0
-rw-r--r--build.zig4
-rw-r--r--doc/langref.html.in1
2 files changed, 3 insertions, 2 deletions
diff --git a/build.zig b/build.zig
index 2323f6b10e..ef3484fb42 100644
--- a/build.zig
+++ b/build.zig
@@ -168,7 +168,7 @@ pub fn build(b: *Builder) !void {
switch (mem.count(u8, git_describe, "-")) {
0 => {
- // Tagged release version (e.g. 0.7.0).
+ // Tagged release version (e.g. 0.8.0).
if (!mem.eql(u8, git_describe, version_string)) {
std.debug.print("Zig version '{s}' does not match Git tag '{s}'\n", .{ version_string, git_describe });
std.process.exit(1);
@@ -176,7 +176,7 @@ pub fn build(b: *Builder) !void {
break :v version_string;
},
2 => {
- // Untagged development build (e.g. 0.7.0-684-gbbe2cca1a).
+ // Untagged development build (e.g. 0.8.0-684-gbbe2cca1a).
var it = mem.split(git_describe, "-");
const tagged_ancestor = it.next() orelse unreachable;
const commit_height = it.next() orelse unreachable;
diff --git a/doc/langref.html.in b/doc/langref.html.in
index da3c038948..b2e18be6ff 100644
--- a/doc/langref.html.in
+++ b/doc/langref.html.in
@@ -194,6 +194,7 @@
<a href="https://ziglang.org/documentation/0.5.0/">0.5.0</a> |
<a href="https://ziglang.org/documentation/0.6.0/">0.6.0</a> |
<a href="https://ziglang.org/documentation/0.7.0/">0.7.0</a> |
+ <a href="https://ziglang.org/documentation/0.8.0/">0.8.0</a> |
master
<h1>Contents</h1>
{#nav#}