Skip to content

Commit 0c17017

Browse files
committed
Release 0.10.0
1 parent 049e602 commit 0c17017

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

216216
switch (mem.count(u8, git_describe, "-")) {
217217
0 => {
218-
// Tagged release version (e.g. 0.9.0).
218+
// Tagged release version (e.g. 0.10.0).
219219
if (!mem.eql(u8, git_describe, version_string)) {
220220
std.debug.print("Zig version '{s}' does not match Git tag '{s}'\n", .{ version_string, git_describe });
221221
std.process.exit(1);
222222
}
223223
break :v version_string;
224224
},
225225
2 => {
226-
// Untagged development build (e.g. 0.9.0-dev.2025+ecf0050a9).
226+
// Untagged development build (e.g. 0.10.0-dev.2025+ecf0050a9).
227227
var it = mem.split(u8, git_describe, "-");
228228
const tagged_ancestor = it.first();
229229
const commit_height = it.next().?;

doc/langref.html.in

+1
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,7 @@
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> |
319319
<a href="https://ziglang.org/documentation/0.9.1/">0.9.1</a> |
320+
<a href="https://ziglang.org/documentation/0.10.0/">0.10.0</a> |
320321
master
321322
</nav>
322323
<nav aria-labelledby="table-of-contents">

0 commit comments

Comments
 (0)