From aa9bdacb3fa1fa747b3dcf440c0c3994ed25f992 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Sat, 30 May 2026 11:52:25 -0700 Subject: [PATCH] ci: update to 0.14.1 broke after 8e666c9d94f08ea4ef992081e7e6b0637cf80a18 --- .github/workflows/push.yml | 2 +- README.md | 2 +- deps.zig | 2 +- docs/README.md | 2 +- docs/commands/install.md | 2 +- zig.mod | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 75c7b1978b7ff741af8785710d80aeaabfb38ed1..755323546c1930d67f49f1d046606ea897b8ca76 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -20,7 +20,7 @@ jobs: uses: mlugg/setup-zig@v2 with: mirror: "http://mirrors.nektro.net/s3cgi" - version: "0.14.0" + version: "0.14.1" - run: zig version - run: zig env diff --git a/README.md b/README.md index 6243c5bd4781147557fd8b87838bd58ec9140ffa..44cee4eb8e6c36d3305b6a5107fd56c1e406d507 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ A package manager for the Zig programming language. ## Built With -- Zig `0.14.0` +- Zig `0.14.1` - See [`zig.mod`](./zig.mod) and [`zigmod.lock`](./zigmod.lock) ### Build from Source diff --git a/deps.zig b/deps.zig index 1b4bc9475fd18c64ba969ca682336685fbd3531b..c849530db49e919573eeb67db7bc167bc744e2e6 100644 --- a/deps.zig +++ b/deps.zig @@ -181,7 +181,7 @@ pub const Package = struct { }; fn checkMinZig(current: std.SemanticVersion, exe: *std.Build.Step.Compile) void { - const min = std.SemanticVersion.parse("0.14.0") catch return; + const min = std.SemanticVersion.parse("0.14.1") catch return; 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})); } diff --git a/docs/README.md b/docs/README.md index 3899170e0cad2ac54d2b90f86476fd9ca18669cf..c53da759100bbff2d25d0216a4ce1c8c5b6d2001 100644 --- a/docs/README.md +++ b/docs/README.md @@ -10,7 +10,7 @@ The rest of this documentation will assume you already have Zig installed. As 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. -The earliest Zig release this Zigmod was verified to work with is `0.14.0`. +The earliest Zig release this Zigmod was verified to work with is `0.14.1`. ## Download You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source. diff --git a/docs/commands/install.md b/docs/commands/install.md index b61222f7f99cb29185cc8c0f8cd3e8d225f3279c..29b12405590b30aa6dd00e330e5cfa67b2114ba8 100644 --- a/docs/commands/install.md +++ b/docs/commands/install.md @@ -22,6 +22,6 @@ zigmod install [git|hg|http] [url] ``` $ zigmod install git https://github.com/nektro/zigmod debug: modpath: /home/me/.cache/zigmod/deps/git/github.com/nektro/zigmod -debug: argv: { /home/me/.local/share/zig/0.14.0/zig, build, --prefix, /home/me/.zigmod } +debug: argv: { /home/me/.local/share/zig/0.14.1/zig, build, --prefix, /home/me/.zigmod } info: success! ``` diff --git a/zig.mod b/zig.mod index 8f88d3fb99ce88b4c8fdd952ae3cc73f4ca0b2d6..54b7acd5325e4be9a450396ea6be4814358eac92 100644 --- a/zig.mod +++ b/zig.mod @@ -3,7 +3,7 @@ name: zigmod main: src/lib.zig license: MIT description: A package manager for the Zig programming language. -min_zig_version: 0.14.0 +min_zig_version: 0.14.1 min_zigmod_version: r96 dependencies: - src: git https://github.com/nektro/zig-yaml -- 2.54.0