Skip to content

Commit 42b4759

Browse files
committed
readme: update zig version support table
1 parent ddf88a5 commit 42b4759

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

readme.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ First, update your `build.zig.zon`:
1515
```sh
1616
# Initialize a zig project if you haven't already
1717
zig init
18-
# replace <refname> with the version you want to use, e.g. 1.50.0
18+
# replace <refname> with the version you want to use, e.g. 1.51.0
1919
zig fetch --save git+https://github.com/allyourcodebase/libuv.git#<refname>
2020
```
2121

@@ -35,9 +35,13 @@ your_exe.linkLibrary(libuv_dep.artifact("uv"));
3535

3636
## Zig Version Support Matrix
3737

38-
| Refname | libuv Version | Compatible Zig Version(s) |
39-
|-----------|----------------|---------------------------|
40-
| `v1.50.0` | `1.50.0` | `0.14.0`, `0.15.0-dev` |
41-
| `main` | `1.51.0` | `0.14.0`, `0.15.0-dev` |
38+
> [!IMPORTANT]
39+
> Compatible zig versions labeled `-dev` are maintained on a best-effort basis and are likely to break as the compiler and zig build system develop. Tag-based refs are immutable and will not be updated when the zig build system has a backward incompatible change.
40+
41+
| Refname | libuv Version | Compatible Zig Version(s) |
42+
|-----------|----------------|--------------------------------|
43+
| `master` | `1.51.0` | `0.14.1`, `0.15.2`, `0.16-dev` |
44+
| `v1.51.0` | `1.51.0` | `0.14.1`, `0.15.2`, `0.16-dev` |
45+
| `v1.50.0` | `1.50.0` | `0.14.1`, `0.15.2` |
4246

4347
[libuv]: https://github.com/libuv

0 commit comments

Comments
 (0)