Skip to content

Commit

Permalink
Release 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Techatrix committed Mar 6, 2025
1 parent 83066a2 commit 7485fee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const builtin = @import("builtin");

/// Must match the `version` in `build.zig.zon`.
/// Remove `.pre` when tagging a new ZLS release and add it back on the next development cycle.
const zls_version: std.SemanticVersion = .{ .major = 0, .minor = 14, .patch = 0, .pre = "dev" };
const zls_version: std.SemanticVersion = .{ .major = 0, .minor = 14, .patch = 0 };

/// Specify the minimum Zig version that is required to compile and test ZLS:
/// Release 0.14.0
Expand Down
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.{
.name = .zls,
// Must match the `zls_version` in `build.zig`
.version = "0.14.0-dev",
.version = "0.14.0",
// 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",
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
default = zls;
zls = pkgs.stdenvNoCC.mkDerivation {
name = "zls";
version = "master";
version = "0.14.0";
meta.mainProgram = "zls";
src = gitignoreSource ./.;
nativeBuildInputs = [zig];
Expand Down

0 comments on commit 7485fee

Please sign in to comment.