authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-10-28 21:52:00 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-10-28 21:52:00 -07:00
log0a086c6bb2c394b337ee87d7dfa9d3efe26e52bc
treef7b0b867d02d3686ce99b9f647d3be4e5e8a6a5f
parente81b89d237a3eb1b80bf73bf395751ebcd0f8a7d

update to zig master 0.9.0-dev.1524+d2f9646d9


6 files changed, 6 insertions(+), 6 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.9.0-dev.1444+e2a2e6c1418 - run: ./download_zig.sh 0.9.0-dev.1524+d2f9646d9
19 - run: zig version19 - run: zig version
20 - run: zig env20 - run: zig env
21 - run: zig build -Dbootstrap21 - run: zig build -Dbootstrap
.github/workflows/nightly.yml+1-1
...@@ -28,7 +28,7 @@ jobs:...@@ -28,7 +28,7 @@ jobs:
28 - name: Setup Zig28 - name: Setup Zig
29 uses: goto-bus-stop/setup-zig@v129 uses: goto-bus-stop/setup-zig@v1
30 with:30 with:
31 version: 0.9.0-dev.1444+e2a2e6c1431 version: 0.9.0-dev.1524+d2f9646d9
3232
33 - run: zig version33 - run: zig version
34 - run: zig env34 - run: zig env
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.9.0-dev.1343+75cecef63`20- Zig master `0.9.0-dev.1524+d2f9646d9`
21- https://github.com/yaml/libyaml21- https://github.com/yaml/libyaml
22- https://github.com/nektro/zig-ansi22- https://github.com/nektro/zig-ansi
23- https://github.com/ziglibs/known-folders23- https://github.com/ziglibs/known-folders
docs/README.md+1-1
...@@ -10,7 +10,7 @@ The rest of this documentation will assume you already have Zig installed....@@ -10,7 +10,7 @@ The 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.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.
1212
13The most recent release Zigmod was verified to work with is `0.9.0-dev.1343+75cecef63`.13The earliest Zig release this Zigmod was verified to work with is `0.9.0-dev.1524+d2f9646d9`.
1414
15## Download15## Download
16You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source.16You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source.
src/util/funcs.zig+1-1
...@@ -172,7 +172,7 @@ const alphabet = "0123456789abcdefghijklmnopqrstuvwxyz";...@@ -172,7 +172,7 @@ const alphabet = "0123456789abcdefghijklmnopqrstuvwxyz";
172pub fn random_string(alloc: *std.mem.Allocator, len: usize) !string {172pub fn random_string(alloc: *std.mem.Allocator, len: usize) !string {
173 const now = @intCast(u64, std.time.nanoTimestamp());173 const now = @intCast(u64, std.time.nanoTimestamp());
174 var rand = std.rand.DefaultPrng.init(now);174 var rand = std.rand.DefaultPrng.init(now);
175 const r = &rand.random;175 const r = &rand.random();
176 var buf = try alloc.alloc(u8, len);176 var buf = try alloc.alloc(u8, len);
177 var i: usize = 0;177 var i: usize = 0;
178 while (i < len) : (i += 1) {178 while (i < len) : (i += 1) {
zigmod.lock+1-1
...@@ -1,6 +1,6 @@...@@ -1,6 +1,6 @@
1212
2git https://github.com/yaml/libyaml tag-0.2.52git https://github.com/yaml/libyaml tag-0.2.5
3git https://github.com/nektro/iguanaTLS commit-954fd016964d44dfe8648985fd7c06f0067be6b03git https://github.com/nektro/iguanaTLS commit-a48976beb7135b472ce8aa2f276df3b8eb775440
4git https://github.com/nektro/zig-ansi commit-d4a53bcac5b87abecc65491109ec22aaf5f3dc2f4git https://github.com/nektro/zig-ansi commit-d4a53bcac5b87abecc65491109ec22aaf5f3dc2f
5git https://github.com/ziglibs/known-folders commit-a282c26da51e5d2c01fec5c744e321ae248cf4095git https://github.com/ziglibs/known-folders commit-a282c26da51e5d2c01fec5c744e321ae248cf409
6git https://github.com/nektro/zig-licenses commit-c9b8cbf3565675a056ad4e9b57cb4f84020e76806git https://github.com/nektro/zig-licenses commit-c9b8cbf3565675a056ad4e9b57cb4f84020e7680