Skip to content

Commit f4a5605

Browse files
committed
update to zig 0.14.0
1 parent 6dbba10 commit f4a5605

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ on:
66
pull_request:
77
branches:
88
- main
9-
schedule:
10-
- cron: '20 0 * * *'
9+
# schedule:
10+
# - cron: '20 0 * * *'
1111

1212
jobs:
1313
build:
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Zig Compiler
2121
uses: mlugg/[email protected]
2222
with:
23-
version: master
23+
version: 0.14.0
2424

2525
- name: Build and test Zig Project
2626
run: zig build

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,10 @@ And import the library to begin using it:
140140
const lizpack = @import("lizpack");
141141
```
142142

143+
## Zig Version
144+
145+
Please refer to the `minimum_zig_version` field of the [`build.zig.zon`](/build.zig.zon).
146+
143147
## TODO
144148

145149
- [ ] refactor: use of has_sentinel

build.zig.zon

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.{
22
.name = .lizpack,
3-
.version = "0.7.1",
4-
.minimum_zig_version = "0.14.0-dev.3446+50b40c962",
3+
.version = "0.7.2",
4+
.minimum_zig_version = "0.14.0",
55
.fingerprint = 0xfb79de2ca48bfd41, // Changing this has security and trust implications.
66
.paths = .{
77
"build.zig",

0 commit comments

Comments
 (0)