Skip to content

Commit 3e10cf0

Browse files
authored
Merge pull request #1163 from lightpanda-io/zig_0_15_2
Upgrade to Zig 0.15.2 - no code changes
2 parents 6f1c3c8 + ef9784a commit 3e10cf0

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/actions/install/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inputs:
55
zig:
66
description: 'Zig version to install'
77
required: false
8-
default: '0.15.1'
8+
default: '0.15.2'
99
arch:
1010
description: 'CPU arch used to select the v8 lib'
1111
required: false

.github/workflows/zig-fmt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: zig-fmt
22

33
env:
4-
ZIG_VERSION: 0.15.1
4+
ZIG_VERSION: 0.15.2
55

66
on:
77
pull_request:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM debian:stable
22

33
ARG MINISIG=0.12
4-
ARG ZIG=0.15.1
4+
ARG ZIG=0.15.2
55
ARG ZIG_MINISIG=RWSGOq2NVecA2UPNdBUZykf1CCb147pkmdtYxgb3Ti+JO/wCYvhbAb/U
66
ARG V8=14.0.365.4
77
ARG ZIG_V8=v0.1.33

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ You can also follow the progress of our Javascript support in our dedicated [zig
164164

165165
### Prerequisites
166166

167-
Lightpanda is written with [Zig](https://ziglang.org/) `0.15.1`. You have to
167+
Lightpanda is written with [Zig](https://ziglang.org/) `0.15.2`. You have to
168168
install it with the right version in order to build the project.
169169

170170
Lightpanda also depends on

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const Build = std.Build;
2323

2424
/// Do not rename this constant. It is scanned by some scripts to determine
2525
/// which zig version to install.
26-
const recommended_zig_version = "0.15.1";
26+
const recommended_zig_version = "0.15.2";
2727

2828
pub fn build(b: *Build) !void {
2929
switch (comptime builtin.zig_version.order(std.SemanticVersion.parse(recommended_zig_version) catch unreachable)) {

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
targetPkgs =
5050
pkgs: with pkgs; [
5151
# Build Tools
52-
zigpkgs."0.15.1"
52+
zigpkgs."0.15.2"
5353
zls
5454
python3
5555
pkg-config

0 commit comments

Comments
 (0)