Skip to content

Commit 74f3bb7

Browse files
committed
Zig 0.15.2
1 parent 8ecc458 commit 74f3bb7

File tree

18 files changed

+24
-26
lines changed

18 files changed

+24
-26
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88

99
env:
10-
ZIG_VERSION: 0.15.1
10+
ZIG_VERSION: 0.15.2
1111

1212
jobs:
1313
formatting-check:
@@ -220,7 +220,7 @@ jobs:
220220
- name: Setup Zig
221221
uses: mlugg/setup-zig@v2
222222
with:
223-
version: 0.15.1
223+
version: 0.15.2
224224
- name: Build Website
225225
run: zig build
226226
working-directory: website

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup Zig
2424
uses: mlugg/setup-zig@v2
2525
with:
26-
version: 0.15.1
26+
version: 0.15.2
2727

2828
- name: Extract version
2929
run: echo "MICROZIG_VERSION=$(zig build package -- get-version)" >> $GITHUB_ENV

.github/workflows/drivers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Zig
2121
uses: mlugg/setup-zig@v2
2222
with:
23-
version: 0.15.1
23+
version: 0.15.2
2424

2525
- name: Run Test Suite
2626
working-directory: drivers

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Zig
2121
uses: mlugg/setup-zig@v2
2222
with:
23-
version: 0.15.1
23+
version: 0.15.2
2424

2525
- name: Build linter
2626
working-directory: tools/linter

.github/workflows/publish-github-pages.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Zig
1818
uses: mlugg/setup-zig@v2
1919
with:
20-
version: 0.15.1
20+
version: 0.15.2
2121

2222
- name: Download and install GitHub CLI
2323
run: |
@@ -65,8 +65,6 @@ jobs:
6565
echo "Generating metadata.json"
6666
echo "{ \"releases\": [$(IFS=,; echo "${releases_with_artifact[*]}")] }" > website/zig-out/downloads/microzig/metadata.json
6767
68-
69-
7068
- name: List Contents
7169
run: tree zig-out
7270
working-directory: website

.github/workflows/sim-aviron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup Zig
2020
uses: mlugg/setup-zig@v2
2121
with:
22-
version: 0.15.1
22+
version: 0.15.2
2323

2424
- name: Build
2525
working-directory: sim/aviron

.github/workflows/tools-regz-wizard.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [
16-
ubuntu-latest,
17-
#windows-latest, # Windows is having a hard time fetching raygui package reliably
18-
macos-latest
19-
]
16+
ubuntu-latest,
17+
#windows-latest, # Windows is having a hard time fetching raygui package reliably
18+
macos-latest,
19+
]
2020
steps:
2121
- name: Checkout
2222
uses: actions/checkout@v4
2323

2424
- name: Setup Zig
2525
uses: mlugg/setup-zig@v2
2626
with:
27-
version: 0.15.1
27+
version: 0.15.2
2828

2929
- name: Build
3030
working-directory: tools/regz-wizard

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
## What version of Zig to use
66

7-
Zig 0.15.1
7+
Zig 0.15.2
88

99
## Getting Started With MicroZig
1010

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Note: This should be changed if you fork microzig!
44
.fingerprint = 0x605a83a849186d0f,
55
.version = "0.15.0",
6-
.minimum_zig_version = "0.15.1",
6+
.minimum_zig_version = "0.15.2",
77
.dependencies = .{
88
.@"build-internals" = .{ .path = "build-internals" },
99
.core = .{ .path = "core" },

examples/nxp/mcx/build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
.name = .examples_nxp_mcx,
33
.version = "0.0.0",
44
.fingerprint = 0x345c53e39b0295f5,
5-
.minimum_zig_version = "0.15.1",
5+
.minimum_zig_version = "0.15.2",
66
.dependencies = .{
77
.microzig = .{ .path = "../../.." },
88
},

0 commit comments

Comments
 (0)