Skip to content

Commit 8de383b

Browse files
authored
Update the Zig version (#9)
1 parent 8860b11 commit 8de383b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install Zig
2121
uses: goto-bus-stop/setup-zig@v2
2222
with:
23-
version: '0.14.1'
23+
version: '0.15.1'
2424

2525
- name: Install System Dependencies
2626
run: |

.github/workflows/lints.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install Zig
2626
uses: goto-bus-stop/setup-zig@v2
2727
with:
28-
version: '0.14.1'
28+
version: '0.15.1'
2929

3030
- name: Install Dependencies
3131
run: |

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install Zig
2626
uses: goto-bus-stop/setup-zig@v2
2727
with:
28-
version: '0.14.1'
28+
version: '0.15.1'
2929

3030
- name: Install Dependencies
3131
run: |

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ################################################################################
22
# # Configuration and Variables
33
# ################################################################################
4-
ZIG ?= $(shell which zig || echo ~/.local/share/zig/0.14.1/zig)
4+
ZIG ?= $(shell which zig || echo ~/.local/share/zig/0.15.1/zig)
55
BUILD_TYPE ?= Debug
66
BUILD_OPTS = -Doptimize=$(BUILD_TYPE)
77
JOBS ?= $(shell nproc || echo 2)

build.zig.zon

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.{
22
.name = .chilli,
3-
.version = "0.1.1",
3+
.version = "0.2.0",
44
.fingerprint = 0x6c259741ae4f5f73, // Changing this has security and trust implications.
5-
.minimum_zig_version = "0.14.1",
5+
.minimum_zig_version = "0.15.1",
66
.paths = .{
77
"build.zig",
88
"build.zig.zon",

0 commit comments

Comments
 (0)