Skip to content

Commit

Permalink
update to zig master 0.10.0-dev.3316+a0d3a87ce
Browse files Browse the repository at this point in the history
  • Loading branch information
nektro committed Aug 11, 2022
1 parent 1bdc22e commit 1bab7ee
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v1
with:
version: "0.10.0-dev.3017+da94227f7"
version: "0.10.0-dev.3316+a0d3a87ce"

- run: zig version
- run: zig env
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Zig
uses: goto-bus-stop/setup-zig@v1
with:
version: "0.10.0-dev.3017+da94227f7"
version: "0.10.0-dev.3316+a0d3a87ce"

- run: zig version
- run: zig env
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3017+da94227f7`)
- Zig master (at least `0.10.0-dev.3316+a0d3a87ce`)
- See [`zig.mod`](./zig.mod) and [`zigmod.lock`](./zigmod.lock)

### Build from Source
Expand Down
2 changes: 1 addition & 1 deletion deps.zig
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pub const Package = struct {
};

fn checkMinZig(current: std.SemanticVersion, exe: *std.build.LibExeObjStep) void {
const min = std.SemanticVersion.parse("0.10.0-dev.3017+da94227f7") catch return;
const min = std.SemanticVersion.parse("0.10.0-dev.3316+a0d3a87ce") 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}));
}

Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3017+da94227f7`.
The earliest Zig release this Zigmod was verified to work with is `0.10.0-dev.3316+a0d3a87ce`.

## Download
You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source.
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/fetch.zig
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ pub fn create_depszig(alloc: std.mem.Allocator, cachepath: string, dir: std.fs.D

try w.print(
\\fn checkMinZig(current: std.SemanticVersion, exe: *std.build.LibExeObjStep) void {{
\\ const min = std.SemanticVersion.parse("{}") catch return;
\\ const min = std.SemanticVersion.parse("{?}") 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}}));
\\}}
\\
Expand Down
2 changes: 1 addition & 1 deletion zig.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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.3017+da94227f7
min_zig_version: 0.10.0-dev.3316+a0d3a87ce
dependencies:
- src: git https://github.com/yaml/libyaml tag-0.2.5
id: 8mdbh0zuneb0i3hs5jby5je0heem1i6yxusl7c8y8qx68hqc
Expand Down

0 comments on commit 1bab7ee

Please sign in to comment.