Skip to content

Commit 1378a2d

Browse files
committed
set minimum runtime Zig version to 0.16.0-dev.1657+985a3565c
1 parent 643930c commit 1378a2d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build_runner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
include:
22-
- zig-version: 0.15.1
22+
# - zig-version: 0.16.0
2323
# - zig-version: mach-latest
2424
# Zig master is handled by 'zig build test' in the main CI
2525
runs-on: ubuntu-22.04

build.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ const zls_version = std.SemanticVersion.parse(@import("build.zig.zon").version)
66
const minimum_build_zig_version = @import("build.zig.zon").minimum_zig_version;
77

88
/// Specify the minimum Zig version that is usable with ZLS:
9-
/// Release 0.15.1
9+
/// Replace uses of `std.Thread.Pool` with `std.Io`, and remove `std.Thread.Pool`
1010
///
1111
/// A breaking change to the Zig Build System should be handled by updating ZLS's build runner (see src\build_runner)
12-
const minimum_runtime_zig_version = "0.15.1";
12+
const minimum_runtime_zig_version = "0.16.0-dev.1657+985a3565c";
1313

1414
const release_targets = [_]std.Target.Query{
1515
.{ .cpu_arch = .aarch64, .os_tag = .linux },

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
// nix flake update --commit-lock-file
1111
// ```
1212
// If you do not use Nix, a ZLS maintainer can take care of this.
13-
.minimum_zig_version = "0.16.0-dev.1634+b27bdd5af",
13+
.minimum_zig_version = "0.16.0-dev.1657+985a3565c",
1414
// If you do not use Nix, a ZLS maintainer can take care of this.
1515
// Whenever the dependencies are updated, run the following command:
1616
// ```bash

0 commit comments

Comments
 (0)