Skip to content

Commit b22736b

Browse files
committed
Zig 0.14.0
1 parent 4d37422 commit b22736b

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,9 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
zig-version: ["0.13.0"]
17+
zig-version: ["0.14.0"]
1818
os: [ubuntu-latest, macos-latest, windows-latest]
1919
include:
20-
- zig-version: "0.12.1"
21-
os: ubuntu-latest
2220
- zig-version: "master"
2321
os: ubuntu-latest
2422

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,17 @@ Provides a package to be used by the zig package manager for C++ programs.
44

55
## Status
66

7-
| Refname | Catch2 version | Zig `0.12.x` | Zig `0.13.x` | Zig `0.14.0-dev` |
8-
|:----------|:---------------|:------------:|:------------:|:----------------:|
9-
| `3.8.0` | `v3.8.0` ||||
10-
| `3.7.1+1` | `v3.7.1` ||||
7+
| Refname | Catch2 version | Zig `0.12.x` | Zig `0.13.x` | Zig `0.14.x` | Zig `0.15.0-dev` |
8+
|:----------|:---------------|:------------:|:------------:|:------------:|:----------------:|
9+
| `3.8.0+1` | `v3.8.0` |||||
10+
| `3.8.0` | `v3.8.0` |||||
11+
| `3.7.1+1` | `v3.7.1` |||||
1112

1213
## Use
1314

1415
Add the dependency in your `build.zig.zon` by running the following command:
1516
```bash
16-
zig fetch --save git+https://github.com/allyourcodebase/catch2#3.8.0
17+
zig fetch --save git+https://github.com/allyourcodebase/catch2#3.8.0+1
1718
```
1819

1920
Then, in your `build.zig`:

build.zig.zon

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
.{
2-
.name = "catch2",
2+
.name = .catch2,
33
.version = "3.8.0",
4-
.minimum_zig_version = "0.12.0",
4+
.fingerprint = 0x50cf7037cefab352,
5+
.minimum_zig_version = "0.14.0",
56
.dependencies = .{
67
.upstream = .{
78
.url = "git+https://github.com/catchorg/Catch2?ref=v3.8.0#914aeecfe23b1e16af6ea675a4fb5dbd5a5b8d0a",

0 commit comments

Comments
 (0)