Skip to content

Commit

Permalink
Release 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Techatrix committed Jun 9, 2024
1 parent 44f870f commit a267180
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 = 13, .patch = 0, .pre = "dev" };
const zls_version = std.SemanticVersion{ .major = 0, .minor = 13, .patch = 0 };

/// Specify the minimum Zig version that is required to compile and test ZLS:
/// Release 0.13.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.13.0-dev",
.version = "0.13.0",
// Must match the `minimum_build_zig_version` in `build.zig`
.minimum_zig_version = "0.13.0",
// If you do not use Nix, a ZLS maintainer or Nix user can take care of this.
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
packages.default = packages.zls;
packages.zls = pkgs.stdenvNoCC.mkDerivation {
name = "zls";
version = "master";
version = "0.13.0";
src = gitignoreSource ./.;
nativeBuildInputs = [ zig ];
dontConfigure = true;
Expand Down

0 comments on commit a267180

Please sign in to comment.