build: update to zig 0.14.1

This commit is contained in:
CJ van den Berg 2025-05-25 23:19:35 +02:00
parent 3c233a8dbf
commit 227dd3d068
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
5 changed files with 5 additions and 5 deletions

View file

@ -45,7 +45,7 @@ Or check your favorite local system package repository.
Make sure your system meets the requirements listed above. Make sure your system meets the requirements listed above.
Flow builds with zig 0.14.0 at this time. Build with: Flow builds with zig 0.14.1 at this time. Build with:
```shell ```shell
zig build -Doptimize=ReleaseSafe zig build -Doptimize=ReleaseSafe

View file

@ -1 +1 @@
0.14.0 0.14.1

View file

@ -1,7 +1,7 @@
.{ .{
.name = .flow, .name = .flow,
.version = "0.2.0", .version = "0.2.0",
.minimum_zig_version = "0.14.0", .minimum_zig_version = "0.14.1",
.fingerprint = 0x52c0d670590aa80f, .fingerprint = 0x52c0d670590aa80f,
.dependencies = .{ .dependencies = .{

View file

@ -2,7 +2,7 @@
.name = .flow_syntax, .name = .flow_syntax,
.version = "0.1.0", .version = "0.1.0",
.fingerprint = 0x3ba2584ea1cec85f, .fingerprint = 0x3ba2584ea1cec85f,
.minimum_zig_version = "0.14.0-dev.3451+d8d2aa9af", .minimum_zig_version = "0.14.1",
.dependencies = .{ .dependencies = .{
.tree_sitter = .{ .tree_sitter = .{

2
zig
View file

@ -24,7 +24,7 @@ if [ "$ARCH" == "arm64" ]; then
ARCH=aarch64 ARCH=aarch64
fi fi
ZIGVER="zig-$OS-$ARCH-$VERSION" ZIGVER="zig-$ARCH-$OS-$VERSION"
ZIG=$ZIGDIR/$ZIGVER/zig ZIG=$ZIGDIR/$ZIGVER/zig
if [ "$1" == "update" ]; then if [ "$1" == "update" ]; then