Skip to content

Commit a438dfc

Browse files
Set minimum zig version to 0.15.0-dev.828+3ce8d19f7
1 parent 7570bcd commit a438dfc

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

build.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const builtin = @import("builtin");
66
const zls_version: std.SemanticVersion = .{ .major = 0, .minor = 15, .patch = 0, .pre = "dev" };
77

88
/// Specify the minimum Zig version that is required to compile and test ZLS:
9-
/// std.Build: resolved generated paths are cwd-relative
9+
/// llvm.ir: fix subrange version
1010
///
1111
/// If you do not use Nix, a ZLS maintainer can take care of this.
1212
/// Whenever this version is increased, run the following command:
@@ -15,7 +15,7 @@ const zls_version: std.SemanticVersion = .{ .major = 0, .minor = 15, .patch = 0,
1515
/// ```
1616
///
1717
/// Also update the `minimum_zig_version` in `build.zig.zon`.
18-
const minimum_build_zig_version = "0.15.0-dev.631+9a3540d61";
18+
const minimum_build_zig_version = "0.15.0-dev.828+3ce8d19f7";
1919

2020
/// Specify the minimum Zig version that is required to run ZLS:
2121
/// Release 0.14.0

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.version = "0.15.0-dev",
55
// Must be kept in line with the `minimum_build_zig_version` in `build.zig`.
66
// Should be a Zig version that is downloadable from https://ziglang.org/download/ or a mirror.
7-
.minimum_zig_version = "0.15.0-dev.769+4d7980645",
7+
.minimum_zig_version = "0.15.0-dev.828+3ce8d19f7",
88
// If you do not use Nix, a ZLS maintainer can take care of this.
99
// Whenever the dependencies are updated, run the following command:
1010
// ```bash

tests/lsp_features/semantic_tokens.zig

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2026,10 +2026,7 @@ test "weird code" {
20262026
});
20272027
try testSemanticTokens(
20282028
\\error. .foo
2029-
, &.{
2030-
.{ "error", .keyword, .{} },
2031-
.{ "foo", .variable, .{} },
2032-
});
2029+
, &.{});
20332030
try testSemanticTokens(
20342031
\\const foo = union {
20352032
\\ .bar = 5,

0 commit comments

Comments
 (0)