Skip to content

Commit

Permalink
set minimum runtime version to 0.14.0-dev.310+9d38e82b5
Browse files Browse the repository at this point in the history
  • Loading branch information
Techatrix committed Dec 9, 2024
1 parent 2f2e93f commit 02bc35d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
Expand Down
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 02bc35d

Please sign in to comment.