authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-05-30 11:52:25 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-05-30 11:52:25 -07:00
logaa9bdacb3fa1fa747b3dcf440c0c3994ed25f992
tree5c1a44c3ee5181b1bf863ee8284f9b0c6ccbce9f
parent4432fb0fda2c2bcfc9e57343a018c98fef2039a6
signaturebadge-check Signed by SSH key SHA256:4hHJbtBRU58AYXwjL7fkz2fnQHdiye8x1QpTCQ0sHNw

ci: update to 0.14.1

broke after 8e666c9d94f08ea4ef992081e7e6b0637cf80a18

6 files changed, 6 insertions(+), 6 deletions(-)

.github/workflows/push.yml+1-1
......@@ -20,7 +20,7 @@ jobs:
2020 uses: mlugg/setup-zig@v2
2121 with:
2222 mirror: "http://mirrors.nektro.net/s3cgi"
23 version: "0.14.0"
23 version: "0.14.1"
2424
2525 - run: zig version
2626 - run: zig env
README.md+1-1
......@@ -22,7 +22,7 @@ A package manager for the Zig programming language.
2222
2323## Built With
2424
25- Zig `0.14.0`
25- Zig `0.14.1`
2626- See [`zig.mod`](./zig.mod) and [`zigmod.lock`](./zigmod.lock)
2727
2828### Build from Source
deps.zig+1-1
......@@ -181,7 +181,7 @@ pub const Package = struct {
181181};
182182
183183fn checkMinZig(current: std.SemanticVersion, exe: *std.Build.Step.Compile) void {
184 const min = std.SemanticVersion.parse("0.14.0") catch return;
184 const min = std.SemanticVersion.parse("0.14.1") catch return;
185185 if (current.order(min).compare(.lt)) @panic(exe.step.owner.fmt("Your Zig version v{} does not meet the minimum build requirement of v{}", .{current, min}));
186186}
187187
docs/README.md+1-1
......@@ -10,7 +10,7 @@ The rest of this documentation will assume you already have Zig installed.
1010
1111As Zig is still in development itself, if you plan to contribute to Zigmod you will need a master download of Zig. Those can be obtained from https://ziglang.org/download/#release-master.
1212
13The earliest Zig release this Zigmod was verified to work with is `0.14.0`.
13The earliest Zig release this Zigmod was verified to work with is `0.14.1`.
1414
1515## Download
1616You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source.
docs/commands/install.md+1-1
......@@ -22,6 +22,6 @@ zigmod install [git|hg|http] [url]
2222```
2323$ zigmod install git https://github.com/nektro/zigmod
2424debug: modpath: /home/me/.cache/zigmod/deps/git/github.com/nektro/zigmod
25debug: argv: { /home/me/.local/share/zig/0.14.0/zig, build, --prefix, /home/me/.zigmod }
25debug: argv: { /home/me/.local/share/zig/0.14.1/zig, build, --prefix, /home/me/.zigmod }
2626info: success!
2727```
zig.mod+1-1
......@@ -3,7 +3,7 @@ name: zigmod
33main: src/lib.zig
44license: MIT
55description: A package manager for the Zig programming language.
6min_zig_version: 0.14.0
6min_zig_version: 0.14.1
77min_zigmod_version: r96
88dependencies:
99 - src: git https://github.com/nektro/zig-yaml