| author | |
| committer | |
| log | 2a940e891dec481e0f33eeebc198bfaee48e7b68 |
| tree | 4815dc61f096e6e5d236f40108cbc6db38333481 |
| parent | 616dbac916275fa0051306a384eb64cf983287be |
8 files changed, 9 insertions(+), 11 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.3685+dae7aeb33" | |
| 29 | version: "0.10.0-dev.3998+c25ce5bba" | |
| 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.3685+dae7aeb33" | |
| 22 | version: "0.10.0-dev.3998+c25ce5bba" | |
| 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.3316+a0d3a87ce`) | |
| 20 | - Zig master (at least `0.10.0-dev.3998+c25ce5bba`) | |
| 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.3316+a0d3a87ce") catch return; | |
| 54 | const min = std.SemanticVersion.parse("0.10.0-dev.3998+c25ce5bba") 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.3316+a0d3a87ce`. | |
| 13 | The earliest Zig release this Zigmod was verified to work with is `0.10.0-dev.3998+c25ce5bba`. | |
| 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/init.zig-2| ... | ... | @@ -13,8 +13,6 @@ const u = @import("./../util/index.zig"); |
| 13 | 13 | // |
| 14 | 14 | |
| 15 | 15 | pub fn execute(args: [][]u8) !void { |
| 16 | _ = args; | |
| 17 | ||
| 18 | 16 | std.debug.print("This utility will walk you through creating a zigmod.yml file.\n", .{}); |
| 19 | 17 | std.debug.print("That will give a good launching off point to get your next project started.\n", .{}); |
| 20 | 18 | std.debug.print("Use `zigmod aq add <pkg>` to add a dependency from https://aquila.red/\n", .{}); |
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.3316+a0d3a87ce | |
| 6 | min_zig_version: 0.10.0-dev.3998+c25ce5bba | |
| 7 | 7 | dependencies: |
| 8 | 8 | - src: git https://github.com/yaml/libyaml tag-0.2.5 |
| 9 | 9 | id: 8mdbh0zuneb0i3hs5jby5je0heem1i6yxusl7c8y8qx68hqc |
zigmod.lock+3-3| ... | ... | @@ -1,8 +1,8 @@ |
| 1 | 1 | 2 |
| 2 | 2 | git https://github.com/MasterQ32/zig-uri commit-e879df3a236869f92298fbe2db3c25e6e84cfd4c |
| 3 | git https://github.com/marlersoft/zigwin32 commit-2b40704fbc2c9fbdb6f31acbc48684b6b98c15e3 | |
| 3 | git https://github.com/marlersoft/zigwin32 commit-209f07cc5861c7bd9c3010a37f32bf6244f9a158 | |
| 4 | 4 | git https://github.com/nektro/arqv-ini commit-1a9b2e90379895e197893b6e19c93bd213ad36e6 |
| 5 | git https://github.com/nektro/iguanaTLS commit-09d9fe92f329484536dfb2b07cfa8b406151cde4 | |
| 5 | git https://github.com/nektro/iguanaTLS commit-c9403b8414d7f80b5e2c04c8f1f8780ca1d2827f | |
| 6 | 6 | git https://github.com/nektro/zig-ansi commit-d4a53bcac5b87abecc65491109ec22aaf5f3dc2f |
| 7 | 7 | git https://github.com/nektro/zig-detect-license commit-de5c285d999eea68b9189b48bb000243fef0a689 |
| 8 | 8 | git https://github.com/nektro/zig-extras commit-01fae956e2f17aa992e717e041a3dd457d440b31 |
| ... | ... | @@ -12,7 +12,7 @@ git https://github.com/nektro/zig-leven commit-ab852cf74fa0b4edc530d925f0654b62c |
| 12 | 12 | git https://github.com/nektro/zig-licenses commit-c9b8cbf3565675a056ad4e9b57cb4f84020e7680 |
| 13 | 13 | git https://github.com/nektro/zig-licenses-text commit-3c07c6e4eb0965dafd0b029c632f823631b3169c |
| 14 | 14 | git https://github.com/nektro/zig-range commit-4b2f12808aa09be4b27a163efc424dd4e0415992 |
| 15 | git https://github.com/nektro/zig-time commit-a22054de725ef19b3f91b9ad960d4093f852b7e0 | |
| 15 | git https://github.com/nektro/zig-time commit-52a6050939b83e9f8b52b2236a36332dcb4c17a3 | |
| 16 | 16 | git https://github.com/truemedian/hzzp commit-d4fbade2d806fc93bc5f79ec8efdcc25ea625fa3 |
| 17 | 17 | git https://github.com/truemedian/zfetch commit-12b1374aae32e8ebf719a096a22cdf4c49433458 |
| 18 | 18 | git https://github.com/ziglibs/known-folders commit-24845b0103e611c108d6bc334231c464e699742c |