Skip to content

Commit a267180

Browse files
committed
Release 0.13.0
1 parent 44f870f commit a267180

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const builtin = @import("builtin");
33

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

88
/// Specify the minimum Zig version that is required to compile and test ZLS:
99
/// Release 0.13.0

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.{
22
.name = "zls",
33
// Must match the `zls_version` in `build.zig`
4-
.version = "0.13.0-dev",
4+
.version = "0.13.0",
55
// Must match the `minimum_build_zig_version` in `build.zig`
66
.minimum_zig_version = "0.13.0",
77
// If you do not use Nix, a ZLS maintainer or Nix user can take care of this.

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
packages.default = packages.zls;
2929
packages.zls = pkgs.stdenvNoCC.mkDerivation {
3030
name = "zls";
31-
version = "master";
31+
version = "0.13.0";
3232
src = gitignoreSource ./.;
3333
nativeBuildInputs = [ zig ];
3434
dontConfigure = true;

0 commit comments

Comments
 (0)