Skip to content

Commit

Permalink
begin the 0.15.0 release cycle
Browse files Browse the repository at this point in the history
  • Loading branch information
Techatrix committed Mar 6, 2025
1 parent 7485fee commit 2dfd6d6
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

- uses: mlugg/setup-zig@v1
with:
version: 0.14.0
version: master

- name: Install APT packages
run: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/build_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
fail-fast: false
matrix:
include:
- zig-version: 0.14.0
build-runner-file: 0.14.0.zig
# - zig-version: mach-latest
# build-runner-file: master.zig
# Zig master is handled by 'zig build test' in the main CI
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: mlugg/setup-zig@v1
with:
version: 0.14.0
version: master

- run: zig env

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- uses: mlugg/setup-zig@v1
with:
version: 0.14.0
version: master

- name: Run zig fmt
if: matrix.os == 'ubuntu-latest'
Expand Down
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const builtin = @import("builtin");

/// Must match the `version` in `build.zig.zon`.
/// Remove `.pre` when tagging a new ZLS release and add it back on the next development cycle.
const zls_version: std.SemanticVersion = .{ .major = 0, .minor = 14, .patch = 0 };
const zls_version: std.SemanticVersion = .{ .major = 0, .minor = 15, .patch = 0, .pre = "dev" };

/// Specify the minimum Zig version that is required to compile and test ZLS:
/// Release 0.14.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.14.0",
.version = "0.15.0-dev",
// Must be kept in line with the `minimum_build_zig_version` in `build.zig`.
// Should be a Zig version that is downloadable from https://ziglang.org/download/ or a mirror.
.minimum_zig_version = "0.14.0",
Expand Down

0 comments on commit 2dfd6d6

Please sign in to comment.