Skip to content

Commit

Permalink
build: Update minimum Zig version
Browse files Browse the repository at this point in the history
  • Loading branch information
mochalins committed Jan 17, 2025
1 parent 5ac3507 commit 0a0ca0f
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 @@ -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:
/// std.Build: add new functions to create artifacts/Step.Compile from existing module
/// std.builtin.Type renames, and make it easier to modify std.builtin
///
/// If you do not use Nix, a ZLS maintainer can take care of this.
/// Whenever this version is increased, run the following command:
Expand All @@ -15,7 +15,7 @@ const zls_version: std.SemanticVersion = .{ .major = 0, .minor = 14, .patch = 0,
/// ```
///
/// Also update the `minimum_zig_version` in `build.zig.zon`.
const minimum_build_zig_version = "0.14.0-dev.2633+bc846c379";
const minimum_build_zig_version = "0.14.0-dev.2801+4d8c24c6c";

/// Specify the minimum Zig version that is required to run ZLS:
/// make zig compiler processes live across rebuilds
Expand Down
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.version = "0.14.0-dev",
// Must be kept in line with the `minimum_build_zig_version` in `build.zig`.
// Should be a Zig version that is downloadable from https://ziglang.org/download/ or a mirror.
.minimum_zig_version = "0.14.0-dev.2634+b36ea592b",
.minimum_zig_version = "0.14.0-dev.2801+4d8c24c6c",
// 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 0a0ca0f

Please sign in to comment.