diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 976cfc2..796e661 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -60,7 +60,7 @@ jobs: - name: Setup Zig uses: mlugg/setup-zig@v2 with: - version: 0.17.0-dev.304+9787df942 + version: 0.17.0-dev.387+31f157d80 - name: Setup Rust uses: dtolnay/rust-toolchain@stable diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6bdd5a7..5c979ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: - name: Setup Zig uses: mlugg/setup-zig@v2 with: - version: 0.17.0-dev.304+9787df942 + version: 0.17.0-dev.387+31f157d80 - name: Build project run: zig build @@ -55,7 +55,7 @@ jobs: - name: Setup Zig uses: mlugg/setup-zig@v2 with: - version: 0.17.0-dev.304+9787df942 + version: 0.17.0-dev.387+31f157d80 - name: Download build artifacts uses: actions/download-artifact@v4 diff --git a/README.md b/README.md index b5455a6..5455131 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Temporalz provides Zig bindings to the Rust-based [temporal_rs](https://github.c #### Prerequisites -- Zig 0.17.0-dev.304+9787df942 +- Zig 0.17.0-dev.387+31f157d80 - Rust toolchain (only required if [prebuilt staticlibs](#prebuilt) are not available for your platform) #### Add as a Dependency diff --git a/build.zig.zon b/build.zig.zon index 45b0c4e..1612ba9 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -2,7 +2,7 @@ .name = .temporalz, .version = "0.2.0", .fingerprint = 0xd8d79d59acc4faae, - .minimum_zig_version = "0.17.0-dev.304+9787df942", + .minimum_zig_version = "0.17.0-dev.387+31f157d80", .dependencies = .{ .temporal = .{ .path = "pkg/temporal", diff --git a/example/build.zig.zon b/example/build.zig.zon index 5971e0c..4da6a53 100644 --- a/example/build.zig.zon +++ b/example/build.zig.zon @@ -2,7 +2,7 @@ .name = .temporalz_example, .version = "0.1.2", .fingerprint = 0x686c9dfc777f9593, - .minimum_zig_version = "0.17.0-dev.304+9787df942", + .minimum_zig_version = "0.17.0-dev.387+31f157d80", .dependencies = .{ .temporalz = .{ .path = "../", diff --git a/pkg/temporal/build.zig.zon b/pkg/temporal/build.zig.zon index 3b4e9d1..901774c 100644 --- a/pkg/temporal/build.zig.zon +++ b/pkg/temporal/build.zig.zon @@ -2,7 +2,7 @@ .name = .temporal, .version = "0.2.0", .fingerprint = 0xd5dcf3f41df6b117, - .minimum_zig_version = "0.17.0-dev.304+9787df942", + .minimum_zig_version = "0.17.0-dev.387+31f157d80", .dependencies = .{ .temporal_rs = .{ .url = "git+https://github.com/boa-dev/temporal?ref=v0.2.3#c003cc92325e19b26f8ee2f85e4a47d98cbcc781", diff --git a/test/runner.zig b/test/runner.zig index 6646cf9..4a22671 100644 --- a/test/runner.zig +++ b/test/runner.zig @@ -31,6 +31,7 @@ pub fn main(init: std.process.Init) !void { const env = Env.init(allocator, init.minimal.environ); defer env.deinit(allocator); + std.testing.environ = env.environ; var slowest = SlowTracker.init(allocator, io, 15); defer slowest.deinit(allocator);