Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/zig_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ jobs:
- uses: actions/checkout@v4
- uses: purefns/setup-zig@main
with:
version: 0.13.0
version: 0.15.1
- run: zig build test
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ cd zig-bytes
You will need to have the Zig compiler installed on your system.

<!-- RENOVATE -->
**The current requred version is `0.13.0`.**
**The current requred version is `0.15.1`.**

You can install it via a number of different methods, with availability depending on your OS:

Expand Down
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const print = std.debug.print;

comptime {
// NOTE: keep this in sync with 'flake.nix'
const required_zig = "0.13.0";
const required_zig = "0.15.1";
const current_zig = builtin.zig_version;
const min_zig = std.SemanticVersion.parse(required_zig) catch unreachable;
if (current_zig.order(min_zig) == .lt) {
Expand Down
Loading