File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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`.
55const 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
Original file line number Diff line number Diff line change 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`
Original file line number Diff line number Diff line change 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 ;
You can’t perform that action at this time.
0 commit comments