Skip to content

Commit d7a4f50

Browse files
committed
Release 3.9.0
1 parent 07acb27 commit d7a4f50

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
runs-on: ${{ matrix.os }}
2121
steps:
2222
- uses: actions/checkout@v4
23-
2423
- uses: mlugg/setup-zig@v2
2524
with:
2625
version: ${{ matrix.zig-version }}
@@ -30,3 +29,6 @@ jobs:
3029

3130
- name: Run tests
3231
run: zig build test --summary all
32+
33+
- name: Build & Run example tests
34+
run: cd example && zig build test --summary all

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ Building with Zig `0.15` will be possible once this issue is resolved: [Build fa
88

99
| Refname | Catch2 version | Zig `0.15.x` | Zig `0.14.x` | Zig `0.13.x` | Zig `0.12.x` |
1010
|:----------|:---------------|:------------:|:------------:|:------------:|:------------:|
11-
| `master` | `v3.8.1` |||||
11+
| `3.9.0` | `v3.9.0` |||||
12+
| `3.8.1` | `v3.8.1` |||||
1213
| `3.8.0+1` | `v3.8.0` |||||
1314
| `3.8.0` | `v3.8.0` |||||
1415
| `3.7.1+1` | `v3.7.1` |||||

build.zig.zon

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
.minimum_zig_version = "0.14.0",
66
.dependencies = .{
77
.upstream = .{
8-
.url = "git+https://github.com/catchorg/Catch2?ref=v3.8.1#2b60af89e23d28eefc081bc930831ee9d45ea58b",
9-
.hash = "N-V-__8AAO3mgQBaDEOVI1ObbA0x1JuYLIjm8Drv1qESd6Ac",
8+
.url = "git+https://github.com/catchorg/Catch2?ref=v3.9.0#fee81626d2a4811095c3a39d20fb355eeb954101",
9+
.hash = "N-V-__8AABqDggBorjRZPI-2m5f6s7F0rf2kYstU45k1haYX",
1010
},
1111
},
1212
.paths = .{

0 commit comments

Comments
 (0)