Skip to content

Commit 4aa85ac

Browse files
authored
.github, docs: bump Zig from 0.12.0 to 0.13.0 (#410)
Zig 0.13.0 was released today, 2024-06-07. See the release notes [1]. Closes: #409 [1] https://ziglang.org/download/0.13.0/release-notes.html
1 parent fe9bca6 commit 4aa85ac

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/bin/install-zig

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ esac
1818

1919
arch="$(uname -m)"
2020

21-
version='0.12.0'
21+
version='0.13.0'
2222
url="https://ziglang.org/download/${version}/zig-${os}-${arch}-${version}.${ext}"
2323

2424
curlopts=(

docs/INSTALLATION.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Fortunately, all of the popular installation methods are listed on the [Zig inst
55

66
## Zig version
77

8-
Exercism currently supports Zig 0.12.0 (released on 2024-04-20) only.
8+
Exercism currently supports Zig 0.13.0 (released on 2024-06-07) only.
99

1010
An exercise may be compatible with a different Zig version, but that isn't guaranteed.
1111
Zig has not yet reached version 1.0, and breaking changes are common.

exercises/practice/allergies/.docs/instructions.append.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
It may be helpful to look at the implementation of [`std.enums.EnumSet`][enumset].
66

7-
[enumset]: https://github.com/ziglang/zig/blob/0.12.0/lib/std/enums.zig#L243-L247
7+
[enumset]: https://github.com/ziglang/zig/blob/0.13.0/lib/std/enums.zig#L243-L247

exercises/practice/anagram/.docs/instructions.append.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ For more details on hash maps in Zig, see:
1313
- [Zighelp - Hash Maps][zighelp]
1414
- [Zig Standard Library - `buf_set.zig`][buf-set]
1515

16-
[buf-set]: https://github.com/ziglang/zig/blob/0.12.0/lib/std/buf_set.zig
16+
[buf-set]: https://github.com/ziglang/zig/blob/0.13.0/lib/std/buf_set.zig
1717
[zig-hashmaps-explained]: https://devlog.hexops.com/2022/zig-hashmaps-explained/
1818
[zighelp]: https://zighelp.org/chapter-2/#hash-maps

exercises/practice/perfect-numbers/.docs/instructions.append.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ For more details, see the [Zig Language Reference][zig-reference] and the implem
88

99
However, note that this exercise does not currently test an input of 0 (because `std.testing` does [not yet support expecting a panic][proposal]).
1010

11-
[zig-reference]: https://ziglang.org/documentation/0.12.0/#unreachable
12-
[assert]: https://github.com/ziglang/zig/blob/0.12.0/lib/std/debug.zig#L392-L404
11+
[zig-reference]: https://ziglang.org/documentation/0.13.0/#unreachable
12+
[assert]: https://github.com/ziglang/zig/blob/0.13.0/lib/std/debug.zig#L401-L413
1313
[proposal]: https://github.com/ziglang/zig/issues/1356

0 commit comments

Comments
 (0)