Skip to content

Commit bcc4980

Browse files
committed
Upgrade to Zig 0.14.1
1 parent 7cc332a commit bcc4980

File tree

5 files changed

+6
-6
lines changed

5 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.14.0'
8+
default: '0.14.1'
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.14.0
4+
ZIG_VERSION: 0.14.1
55

66
on:
77
pull_request:

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
FROM ubuntu:24.04
22

33
ARG MINISIG=0.12
4-
ARG ZIG=0.14.0
4+
ARG ZIG=0.14.1
55
ARG ZIG_MINISIG=RWSGOq2NVecA2UPNdBUZykf1CCb147pkmdtYxgb3Ti+JO/wCYvhbAb/U
66
ARG ARCH=x86_64
7-
ARG V8=11.1.134
7+
ARG V8=13.6.233.8
88
ARG ZIG_V8=v0.1.24
99

1010
RUN apt-get update -yq && \

README.md

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

149149
### Prerequisites
150150

151-
Lightpanda is written with [Zig](https://ziglang.org/) `0.14.0`. You have to
151+
Lightpanda is written with [Zig](https://ziglang.org/) `0.14.1`. You have to
152152
install it with the right version in order to build the project.
153153

154154
Lightpanda also depends on

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const builtin = @import("builtin");
2121

2222
/// Do not rename this constant. It is scanned by some scripts to determine
2323
/// which zig version to install.
24-
const recommended_zig_version = "0.14.0";
24+
const recommended_zig_version = "0.14.1";
2525

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

0 commit comments

Comments
 (0)