Skip to content

Commit a18bf7a

Browse files
committed
Release 0.9.0
1 parent ecf0050 commit a18bf7a

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
@@ -222,15 +222,15 @@ pub fn build(b: *Builder) !void {
222222

223223
switch (mem.count(u8, git_describe, "-")) {
224224
0 => {
225-
// Tagged release version (e.g. 0.8.0).
225+
// Tagged release version (e.g. 0.9.0).
226226
if (!mem.eql(u8, git_describe, version_string)) {
227227
std.debug.print("Zig version '{s}' does not match Git tag '{s}'\n", .{ version_string, git_describe });
228228
std.process.exit(1);
229229
}
230230
break :v version_string;
231231
},
232232
2 => {
233-
// Untagged development build (e.g. 0.8.0-684-gbbe2cca1a).
233+
// Untagged development build (e.g. 0.9.0-dev.2025+ecf0050a9).
234234
var it = mem.split(u8, git_describe, "-");
235235
const tagged_ancestor = it.next() orelse unreachable;
236236
const commit_height = it.next() orelse unreachable;

doc/langref.html.in

+1
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,7 @@
316316
<a href="https://ziglang.org/documentation/0.6.0/">0.6.0</a> |
317317
<a href="https://ziglang.org/documentation/0.7.1/">0.7.1</a> |
318318
<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> |
319320
master
320321
</nav>
321322
<nav aria-labelledby="table-of-contents">

0 commit comments

Comments
 (0)