Skip to content

Commit 9c6f1ce

Browse files
committed
Clarify why zig 0.15 isn't supported
1 parent 97fc22a commit 9c6f1ce

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

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

55
## Status
66

7-
[Build fails on clang 20](https://github.com/catchorg/Catch2/issues/2991)
7+
Building with Zig `0.15` will be possible once this issue is resolved: [Build fails on clang 20](https://github.com/catchorg/Catch2/issues/2991)
88

99
| Refname | Catch2 version | Zig `0.15.x` | Zig `0.14.x` | Zig `0.13.x` | Zig `0.12.x` |
1010
|:----------|:---------------|:------------:|:------------:|:------------:|:------------:|
11-
| `3.8.1` | `v3.8.1` |||||
11+
| `master` | `v3.8.1` |||||
1212
| `3.8.0+1` | `v3.8.0` |||||
1313
| `3.8.0` | `v3.8.0` |||||
1414
| `3.7.1+1` | `v3.7.1` |||||
@@ -17,7 +17,7 @@ Provides a package to be used by the zig package manager for C++ programs.
1717

1818
Add the dependency in your `build.zig.zon` by running the following command:
1919
```bash
20-
zig fetch --save git+https://github.com/allyourcodebase/catch2#3.8.1
20+
zig fetch --save git+https://github.com/allyourcodebase/catch2#master
2121
```
2222

2323
Then, in your `build.zig`:

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const std = @import("std");
22

3-
const version = .{ .major = 3, .minor = 8, .patch = 0 };
3+
const version = .{ .major = 3, .minor = 8, .patch = 1 };
44

55
pub fn build(b: *std.Build) !void {
66
const target = b.standardTargetOptions(.{});

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.{
22
.name = .catch2,
3-
.version = "3.8.0",
3+
.version = "3.8.1",
44
.fingerprint = 0x50cf7037cefab352,
55
.minimum_zig_version = "0.14.0",
66
.dependencies = .{

0 commit comments

Comments
 (0)