authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-06-01 19:55:50 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-06-01 19:55:50 -07:00
logfa0acac8479c573059713ebb1981ac5a8ed42086
treea56ab8a49a78e8ffb79d751d8e645ae632e01d9f
parent66c00bd056203c6fb78621eebf2919833e6cf605

update to zig master `0.8.0-dev.2711`, fixes #15


5 files changed, 5 insertions(+), 5 deletions(-)

.circleci/config.yml+1-1
...@@ -15,7 +15,7 @@ jobs:...@@ -15,7 +15,7 @@ jobs:
15 - run: git submodule update --init --recursive15 - run: git submodule update --init --recursive
1616
17 - run: apt -y install xz-utils jq17 - run: apt -y install xz-utils jq
18 - run: ./download_zig.sh 0.8.0-dev.2133+ad33e348318 - run: ./download_zig.sh 0.8.0-dev.2711+11ae6c42c
19 - run: zig version19 - run: zig version
20 - run: zig env20 - run: zig env
21 - run: zig build -Dbootstrap21 - run: zig build -Dbootstrap
README.md+1-1
...@@ -17,7 +17,7 @@ A package manager for the Zig programming language....@@ -17,7 +17,7 @@ A package manager for the Zig programming language.
17- https://github.com/nektro/zigmod/releases17- https://github.com/nektro/zigmod/releases
1818
19## Built With19## Built With
20- Zig master `0.8.0-dev.2133+ad33e3483`20- Zig master `0.8.0-dev.2711+11ae6c42c`
2121
22### Build from Source22### Build from Source
23Initially,23Initially,
build.zig+1-1
...@@ -10,7 +10,7 @@ pub fn build(b: *Builder) void {...@@ -10,7 +10,7 @@ pub fn build(b: *Builder) void {
10 const mode = b.standardReleaseOptions();10 const mode = b.standardReleaseOptions();
1111
12 const use_full_name = b.option(bool, "use-full-name", "") orelse false;12 const use_full_name = b.option(bool, "use-full-name", "") orelse false;
13 const with_arch_os = b.fmt("-{s}-{s}", .{ @tagName(target.cpu_arch orelse builtin.arch), @tagName(target.os_tag orelse builtin.os.tag) });13 const with_arch_os = b.fmt("-{s}-{s}", .{ @tagName(target.cpu_arch orelse builtin.cpu.arch), @tagName(target.os_tag orelse builtin.os.tag) });
14 const exe_name = b.fmt("{s}{s}", .{ "zigmod", if (use_full_name) with_arch_os else "" });14 const exe_name = b.fmt("{s}{s}", .{ "zigmod", if (use_full_name) with_arch_os else "" });
1515
16 const exe = b.addExecutable(exe_name, "src/main.zig");16 const exe = b.addExecutable(exe_name, "src/main.zig");
docs/README.md+1-1
...@@ -8,7 +8,7 @@ You can learn more about Zig here:...@@ -8,7 +8,7 @@ You can learn more about Zig here:
88
9The rest of this documentation will assume you already have Zig installed.9The rest of this documentation will assume you already have Zig installed.
1010
11As 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 most recent release Zigmod was verified to work with is `0.8.0-dev.2133+ad33e3483`.11As 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 most recent release Zigmod was verified to work with is `0.8.0-dev.2711+11ae6c42c`.
1212
13## Download13## Download
14You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source.14You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source.
src/main.zig+1-1
...@@ -20,7 +20,7 @@ pub fn main() !void {...@@ -20,7 +20,7 @@ pub fn main() !void {
20 u.print("zigmod {s} {s} {s} {s}", .{20 u.print("zigmod {s} {s} {s} {s}", .{
21 build_options.version,21 build_options.version,
22 @tagName(builtin.os.tag),22 @tagName(builtin.os.tag),
23 @tagName(builtin.arch),23 @tagName(builtin.cpu.arch),
24 @tagName(builtin.abi),24 @tagName(builtin.abi),
25 });25 });
26 return;26 return;