diff --git a/build.zig b/build.zig index 99d2a3f12..ceb54679f 100644 --- a/build.zig +++ b/build.zig @@ -18,14 +18,14 @@ const zls_version = std.SemanticVersion{ .major = 0, .minor = 14, .patch = 0, .p const minimum_build_zig_version = "0.14.0-dev.2088+3f7fac5ff"; /// Specify the minimum Zig version that is required to run ZLS: -/// Build Runner: Implement File System Watching for kqueue +/// make zig compiler processes live across rebuilds /// /// Examples of reasons that would cause the minimum runtime version to be bumped are: /// - breaking change to the Zig Syntax /// - breaking change to AstGen (i.e `zig ast-check`) /// /// A breaking change to the Zig Build System should be handled by updating ZLS's build runner (see src\build_runner) -const minimum_runtime_zig_version = "0.14.0-dev.2046+b8795b4d0"; +const minimum_runtime_zig_version = "0.14.0-dev.310+9d38e82b5"; const release_targets = [_]std.Target.Query{ .{ .cpu_arch = .x86_64, .os_tag = .windows }, diff --git a/build.zig.zon b/build.zig.zon index 227dae2b2..a17878a21 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -3,7 +3,7 @@ // Must match the `zls_version` in `build.zig` .version = "0.14.0-dev", // Must match the `minimum_build_zig_version` in `build.zig` - .minimum_zig_version = "0.14.0-dev.2088+3f7fac5ff", + .minimum_zig_version = "0.14.0-dev.310+9d38e82b5", // If you do not use Nix, a ZLS maintainer can take care of this. // Whenever the dependencies are updated, run the following command: // ```bash