diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 9a8e5da32e05c3d388be84ad56935ad71e3b2922..7a19f1548a99ace07d3cb28887b80e5d0b4aaaa1 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -26,7 +26,7 @@ jobs: - name: Setup Zig uses: goto-bus-stop/setup-zig@v1 with: - version: "0.10.0" + version: "0.11.0-dev.193+eed82ca28" - run: zig version - run: zig env diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index c6b614c3c22638a756d5d21c19fb638398f39d2a..d3f91f0060d7db4d83dd2f47d23c861564617ab1 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -19,7 +19,7 @@ jobs: - name: Setup Zig uses: goto-bus-stop/setup-zig@v1 with: - version: "0.10.0" + version: "0.11.0-dev.193+eed82ca28" - run: zig version - run: zig env diff --git a/README.md b/README.md index 0383949f63efea9dd64eab6456a470ad36b96bda..b57b8bce42f9cef706959483a6b9dc2d4dbb1ff1 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ A package manager for the Zig programming language. - https://github.com/nektro/zigmod/releases ## Built With -- Zig master (at least `0.10.0-dev.4099+d3d24874c`) +- Zig master (at least `0.11.0-dev.193+eed82ca28`) - See [`zig.mod`](./zig.mod) and [`zigmod.lock`](./zigmod.lock) ### Build from Source diff --git a/build.zig b/build.zig index def07d7f14f25fbbae64a1c850378196db195157..30f425c2d38248052408911b307618194bdf0cf5 100644 --- a/build.zig +++ b/build.zig @@ -5,8 +5,6 @@ const deps = @import("./deps.zig"); pub fn build(b: *std.build.Builder) void { b.prominent_compile_errors = true; - // currently blocked on https://github.com/ziglang/zig/issues/12403 - b.use_stage1 = !(b.option(bool, "stage2", "use the stage2 compiler") orelse false); const target = b.standardTargetOptions(.{}); b.setPreferredReleaseMode(.ReleaseSafe); diff --git a/deps.zig b/deps.zig index 93eb378a7a4c3732333adbdba8532649eed5c36e..5371903e09f887803761f4995cdbb42a44c41334 100644 --- a/deps.zig +++ b/deps.zig @@ -143,7 +143,7 @@ pub const Package = struct { }; fn checkMinZig(current: std.SemanticVersion, exe: *std.build.LibExeObjStep) void { - const min = std.SemanticVersion.parse("0.10.0-dev.4099+d3d24874c") catch return; + const min = std.SemanticVersion.parse("0.11.0-dev.193+eed82ca28") catch return; 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})); } diff --git a/docs/README.md b/docs/README.md index 9a0466800bb16ceacea6646e00ff0f374d57eaca..104ebb0ca6bfe0a6c16f0299f0bef794ec9e963a 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.10.0-dev.4099+d3d24874c`. +The earliest Zig release this Zigmod was verified to work with is `0.11.0-dev.193+eed82ca28`. ## Download You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source. diff --git a/zig.mod b/zig.mod index 1a8a9f9403382f670e97d1e9d91ee3b4916b1d0c..4b53c40774bdd3e1534ebd49a2ddec56a8c2e02e 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.10.0-dev.4099+d3d24874c +min_zig_version: 0.11.0-dev.193+eed82ca28 dependencies: - src: git https://gist.github.com/nektro/d468fea84f8217e4c26ee8fbeeea38cc # yaml - src: git https://github.com/nektro/zig-ansi