authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-05-02 23:35:38 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-05-02 23:35:38 -07:00
log5cf6a2139f674152373e30b357b5bba676ef233d
tree27f2b32fdc243df2d4de6493be5acc2346db7cfd
parent30f101f0bb7e589e7359a0a647b048a5e7d9657d

update to zig master `0.8.0-dev.2093+c47028cd0`


4 files changed, 11 insertions(+), 11 deletions(-)

.circleci/config.yml+4-4
......@@ -15,16 +15,16 @@ jobs:
1515 - run: git submodule update --init --recursive
1616
1717 - run: apt -y install xz-utils jq
18 - run: ./download_zig.sh 0.8.0-dev.1767+c28d1fe17
18 - run: ./download_zig.sh 0.8.0-dev.2093+c47028cd0
1919 - run: zig version
2020 - run: zig env
2121 - run: zig build -Dbootstrap
22 - run: ./zig-cache/bin/zigmod fetch
22 - run: ./zig-out/bin/zigmod fetch
2323 - run: ./build_all_zig.sh
2424 - store_artifacts:
25 path: ./zig-cache/bin/
25 path: ./zig-out/bin/
2626 destination: /artifacts/
2727
2828 - run: mkdir -p /artifacts/
29 - run: cp -R ./zig-cache/bin/. /artifacts/
29 - run: cp -R ./zig-out/bin/. /artifacts/
3030 - run: ./make_release.sh
.gitignore+1-1
......@@ -1,2 +1,2 @@
1/zig-cache
1/zig-*
22/.zigmod
README.md+3-3
......@@ -17,20 +17,20 @@ A package manager for the Zig programming language.
1717- https://github.com/nektro/zigmod/releases
1818
1919## Built With
20- Zig master `0.8.0-dev.1767+c28d1fe17`
20- Zig master `0.8.0-dev.2093+c47028cd0`
2121
2222### Build from Source
2323Initially,
2424```
2525$ git clone https://github.com/nektro/zigmod --recursive
2626$ zig build -Dbootstrap
27$ ./zig-cache/bin/zigmod fetch
27$ ./zig-out/bin/zigmod fetch
2828```
2929
3030To build,
3131```
3232$ zig build
33$ ./zig-cache/bin/zigmod
33$ ./zig-out/bin/zigmod
3434```
3535
3636## Usage
docs/README.md+3-3
......@@ -8,7 +8,7 @@ You can learn more about Zig here:
88
99The 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.1767+c28d1fe17`.
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.2093+c47028cd0`.
1212
1313## Download
1414You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source.
......@@ -19,9 +19,9 @@ Assuming you have Zig master installed,
1919$ git clone https://github.com/nektro/zigmod --recursive
2020$ cd zigmod
2121$ zig build -Dbootstrap
22$ ./zig-cache/bin/zigmod fetch
22$ ./zig-out/bin/zigmod fetch
2323$ zig build
24$ ./zig-cache/bin/zigmod
24$ ./zig-out/bin/zigmod
2525```
2626
2727## Getting Started