| author | |
| committer | |
| log | aa9bdacb3fa1fa747b3dcf440c0c3994ed25f992 |
| tree | 5c1a44c3ee5181b1bf863ee8284f9b0c6ccbce9f |
| parent | 4432fb0fda2c2bcfc9e57343a018c98fef2039a6 |
| signature |
broke after 8e666c9d94f08ea4ef992081e7e6b0637cf80a186 files changed, 6 insertions(+), 6 deletions(-)
.github/workflows/push.yml+1-1| ... | ... | @@ -20,7 +20,7 @@ jobs: |
| 20 | 20 | uses: mlugg/setup-zig@v2 |
| 21 | 21 | with: |
| 22 | 22 | mirror: "http://mirrors.nektro.net/s3cgi" |
| 23 | version: "0.14.0" | |
| 23 | version: "0.14.1" | |
| 24 | 24 | |
| 25 | 25 | - run: zig version |
| 26 | 26 | - run: zig env |
README.md+1-1| ... | ... | @@ -22,7 +22,7 @@ A package manager for the Zig programming language. |
| 22 | 22 | |
| 23 | 23 | ## Built With |
| 24 | 24 | |
| 25 | - Zig `0.14.0` | |
| 25 | - Zig `0.14.1` | |
| 26 | 26 | - See [`zig.mod`](./zig.mod) and [`zigmod.lock`](./zigmod.lock) |
| 27 | 27 | |
| 28 | 28 | ### Build from Source |
deps.zig+1-1| ... | ... | @@ -181,7 +181,7 @@ pub const Package = struct { |
| 181 | 181 | }; |
| 182 | 182 | |
| 183 | 183 | fn 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; | |
| 185 | 185 | 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})); |
| 186 | 186 | } |
| 187 | 187 |
docs/README.md+1-1| ... | ... | @@ -10,7 +10,7 @@ The rest of this documentation will assume you already have Zig installed. |
| 10 | 10 | |
| 11 | 11 | 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. |
| 12 | 12 | |
| 13 | The earliest Zig release this Zigmod was verified to work with is `0.14.0`. | |
| 13 | The earliest Zig release this Zigmod was verified to work with is `0.14.1`. | |
| 14 | 14 | |
| 15 | 15 | ## Download |
| 16 | 16 | You 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] |
| 22 | 22 | ``` |
| 23 | 23 | $ zigmod install git https://github.com/nektro/zigmod |
| 24 | 24 | debug: modpath: /home/me/.cache/zigmod/deps/git/github.com/nektro/zigmod |
| 25 | debug: argv: { /home/me/.local/share/zig/0.14.0/zig, build, --prefix, /home/me/.zigmod } | |
| 25 | debug: argv: { /home/me/.local/share/zig/0.14.1/zig, build, --prefix, /home/me/.zigmod } | |
| 26 | 26 | info: success! |
| 27 | 27 | ``` |
zig.mod+1-1| ... | ... | @@ -3,7 +3,7 @@ name: zigmod |
| 3 | 3 | main: src/lib.zig |
| 4 | 4 | license: MIT |
| 5 | 5 | description: A package manager for the Zig programming language. |
| 6 | min_zig_version: 0.14.0 | |
| 6 | min_zig_version: 0.14.1 | |
| 7 | 7 | min_zigmod_version: r96 |
| 8 | 8 | dependencies: |
| 9 | 9 | - src: git https://github.com/nektro/zig-yaml |