File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff 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
1818Add 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
2323Then, in your ` build.zig ` :
Original file line number Diff line number Diff line change 11const std = @import ("std" );
22
3- const version = .{ .major = 3 , .minor = 8 , .patch = 0 };
3+ const version = .{ .major = 3 , .minor = 8 , .patch = 1 };
44
55pub fn build (b : * std.Build ) ! void {
66 const target = b .standardTargetOptions (.{});
Original file line number Diff line number Diff line change 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 = .{
You can’t perform that action at this time.
0 commit comments