Skip to content

Commit 68cd4ff

Browse files
committed
Release 0.12.0
1 parent e9f6740 commit 68cd4ff

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const builtin = @import("builtin");
44
/// Must match the `version` in `build.zig.zon`. Add a `-dev` suffix when `zls_version_is_tagged == false`.
55
const zls_version = std.SemanticVersion{ .major = 0, .minor = 12, .patch = 0 };
66
/// set this to true when tagging a new ZLS release and then unset it on the next development cycle.
7-
const zls_version_is_tagged: bool = false;
7+
const zls_version_is_tagged: bool = true;
88

99
/// Specify the minimum Zig version that is required to compile and test ZLS:
1010
/// Release 0.12.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.12.0-dev",
4+
.version = "0.12.0",
55
// Must match the `minimum_zig_version` in `build.zig`
66
.minimum_zig_version = "0.12.0",
77
// whenever the dependencies are updated, run `zon2nix > deps.nix`

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
packages.default = packages.zls;
3232
packages.zls = pkgs.stdenvNoCC.mkDerivation {
3333
name = "zls";
34-
version = "master";
34+
version = "0.12.0";
3535
src = gitignoreSource ./.;
3636
nativeBuildInputs = [ zig ];
3737
dontConfigure = true;

0 commit comments

Comments
 (0)