| author | |
| committer | |
| log | 1bab7ee0c65e51cd79b40d790e2ef84e72fefa34 |
| tree | 9c1482f8a7b587644be8987af96648c44bf19924 |
| parent | 1bdc22e078fbbca10ed55bcd599fd2fc58f4f877 |
7 files changed, 7 insertions(+), 7 deletions(-)
.github/workflows/nightly.yml+1-1| ... | ... | @@ -26,7 +26,7 @@ jobs: |
| 26 | 26 | - name: Setup Zig |
| 27 | 27 | uses: goto-bus-stop/setup-zig@v1 |
| 28 | 28 | with: |
| 29 | version: "0.10.0-dev.3017+da94227f7" | |
| 29 | version: "0.10.0-dev.3316+a0d3a87ce" | |
| 30 | 30 | |
| 31 | 31 | - run: zig version |
| 32 | 32 | - run: zig env |
.github/workflows/push.yml+1-1| ... | ... | @@ -19,7 +19,7 @@ jobs: |
| 19 | 19 | - name: Setup Zig |
| 20 | 20 | uses: goto-bus-stop/setup-zig@v1 |
| 21 | 21 | with: |
| 22 | version: "0.10.0-dev.3017+da94227f7" | |
| 22 | version: "0.10.0-dev.3316+a0d3a87ce" | |
| 23 | 23 | |
| 24 | 24 | - run: zig version |
| 25 | 25 | - run: zig env |
README.md+1-1| ... | ... | @@ -17,7 +17,7 @@ A package manager for the Zig programming language. |
| 17 | 17 | - https://github.com/nektro/zigmod/releases |
| 18 | 18 | |
| 19 | 19 | ## Built With |
| 20 | - Zig master (at least `0.10.0-dev.3017+da94227f7`) | |
| 20 | - Zig master (at least `0.10.0-dev.3316+a0d3a87ce`) | |
| 21 | 21 | - See [`zig.mod`](./zig.mod) and [`zigmod.lock`](./zigmod.lock) |
| 22 | 22 | |
| 23 | 23 | ### Build from Source |
deps.zig+1-1| ... | ... | @@ -51,7 +51,7 @@ pub const Package = struct { |
| 51 | 51 | }; |
| 52 | 52 | |
| 53 | 53 | fn checkMinZig(current: std.SemanticVersion, exe: *std.build.LibExeObjStep) void { |
| 54 | const min = std.SemanticVersion.parse("0.10.0-dev.3017+da94227f7") catch return; | |
| 54 | const min = std.SemanticVersion.parse("0.10.0-dev.3316+a0d3a87ce") catch return; | |
| 55 | 55 | if (current.order(min).compare(.lt)) @panic(exe.builder.fmt("Your Zig version v{} does not meet the minimum build requirement of v{}", .{current, min})); |
| 56 | 56 | } |
| 57 | 57 |
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.10.0-dev.3017+da94227f7`. | |
| 13 | The earliest Zig release this Zigmod was verified to work with is `0.10.0-dev.3316+a0d3a87ce`. | |
| 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. |
src/cmd/fetch.zig+1-1| ... | ... | @@ -102,7 +102,7 @@ pub fn create_depszig(alloc: std.mem.Allocator, cachepath: string, dir: std.fs.D |
| 102 | 102 | |
| 103 | 103 | try w.print( |
| 104 | 104 | \\fn checkMinZig(current: std.SemanticVersion, exe: *std.build.LibExeObjStep) void {{ |
| 105 | \\ const min = std.SemanticVersion.parse("{}") catch return; | |
| 105 | \\ const min = std.SemanticVersion.parse("{?}") catch return; | |
| 106 | 106 | \\ if (current.order(min).compare(.lt)) @panic(exe.builder.fmt("Your Zig version v{{}} does not meet the minimum build requirement of v{{}}", .{{current, min}})); |
| 107 | 107 | \\}} |
| 108 | 108 | \\ |
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.10.0-dev.3017+da94227f7 | |
| 6 | min_zig_version: 0.10.0-dev.3316+a0d3a87ce | |
| 7 | 7 | dependencies: |
| 8 | 8 | - src: git https://github.com/yaml/libyaml tag-0.2.5 |
| 9 | 9 | id: 8mdbh0zuneb0i3hs5jby5je0heem1i6yxusl7c8y8qx68hqc |