Skip to content

Commit

Permalink
Release 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Techatrix committed Apr 25, 2024
1 parent e9f6740 commit 68cd4ff
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 @@ -4,7 +4,7 @@ const builtin = @import("builtin");
/// Must match the `version` in `build.zig.zon`. Add a `-dev` suffix when `zls_version_is_tagged == false`.
const zls_version = std.SemanticVersion{ .major = 0, .minor = 12, .patch = 0 };
/// set this to true when tagging a new ZLS release and then unset it on the next development cycle.
const zls_version_is_tagged: bool = false;
const zls_version_is_tagged: bool = true;

/// Specify the minimum Zig version that is required to compile and test ZLS:
/// Release 0.12.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.12.0-dev",
.version = "0.12.0",
// Must match the `minimum_zig_version` in `build.zig`
.minimum_zig_version = "0.12.0",
// whenever the dependencies are updated, run `zon2nix > deps.nix`
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
packages.default = packages.zls;
packages.zls = pkgs.stdenvNoCC.mkDerivation {
name = "zls";
version = "master";
version = "0.12.0";
src = gitignoreSource ./.;
nativeBuildInputs = [ zig ];
dontConfigure = true;
Expand Down

0 comments on commit 68cd4ff

Please sign in to comment.