Skip to content

Commit 4d37422

Browse files
committed
Release 3.8.0
1 parent 83ce76e commit 4d37422

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ Provides a package to be used by the zig package manager for C++ programs.
66

77
| Refname | Catch2 version | Zig `0.12.x` | Zig `0.13.x` | Zig `0.14.0-dev` |
88
|:----------|:---------------|:------------:|:------------:|:----------------:|
9+
| `3.8.0` | `v3.8.0` ||||
910
| `3.7.1+1` | `v3.7.1` ||||
1011

1112
## Use
1213

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

1819
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 = 7, .patch = 1 };
3+
const version = .{ .major = 3, .minor = 8, .patch = 0 };
44

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

build.zig.zon

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
.{
22
.name = "catch2",
3-
.version = "3.7.1",
3+
.version = "3.8.0",
44
.minimum_zig_version = "0.12.0",
55
.dependencies = .{
66
.upstream = .{
7-
.url = "git+https://github.com/catchorg/Catch2?ref=v3.7.1#fa43b77429ba76c462b1898d6cd2f2d7a9416b14",
8-
.hash = "12203b77f3dc2161e6074743f5c9e7bcca49016380317e83bbc14ec293d80d9bb8fe",
7+
.url = "git+https://github.com/catchorg/Catch2?ref=v3.8.0#914aeecfe23b1e16af6ea675a4fb5dbd5a5b8d0a",
8+
.hash = "1220cabb0cff2e2cf376567f9c5e32d97488f6b1dd0e0ab1379c882cc9233f30dcd1",
99
},
1010
},
1111
.paths = .{

0 commit comments

Comments
 (0)