From 9e7e14f759d4914d8ad2b0a67d7251f535691bd2 Mon Sep 17 00:00:00 2001 From: Techatrix Date: Thu, 26 Dec 2024 03:43:25 +0100 Subject: [PATCH] set minimum build version to `0.14.0-dev.2534+12d64c456` --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.zig b/build.zig index 68e5a0ff5..6ef687626 100644 --- a/build.zig +++ b/build.zig @@ -6,7 +6,7 @@ const builtin = @import("builtin"); const zls_version = std.SemanticVersion{ .major = 0, .minor = 14, .patch = 0, .pre = "dev" }; /// Specify the minimum Zig version that is required to compile and test ZLS: -/// fix std.zig.Ast.rootDecls on .zon mode Ast +/// std.Build: add new functions to create artifacts/Step.Compile from existing module /// /// If you do not use Nix, a ZLS maintainer can take care of this. /// Whenever this version is increased, run the following command: @@ -15,7 +15,7 @@ const zls_version = std.SemanticVersion{ .major = 0, .minor = 14, .patch = 0, .p /// ``` /// /// Must match the `minimum_zig_version` in `build.zig.zon`. -const minimum_build_zig_version = "0.14.0-dev.2472+cc82620b2"; +const minimum_build_zig_version = "0.14.0-dev.2534+12d64c456"; /// Specify the minimum Zig version that is required to run ZLS: /// make zig compiler processes live across rebuilds