Skip to content

Commit f74d085

Browse files
committed
set minimum build version to 0.15.0-dev.393+5668c8b7b
1 parent 927e970 commit f74d085

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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: eradicate u29 and embrace std.mem.Alignment
9+
/// compiler: Allow configuring UBSan mode at the module level.
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.346+f32a5d349";
18+
const minimum_build_zig_version = "0.15.0-dev.393+5668c8b7b";
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.355+206bd1ced",
7+
.minimum_zig_version = "0.15.0-dev.393+5668c8b7b",
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

0 commit comments

Comments
 (0)