From 40314c65ea696c7bdfd5dc4b78d2bc66ec3d2422 Mon Sep 17 00:00:00 2001 From: HUMORCE Date: Sun, 25 May 2025 08:59:15 +0000 Subject: [PATCH] zig: Update to version 0.14.1, add 32bit --- bucket/zig.json | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/bucket/zig.json b/bucket/zig.json index b33a15c97f..d37a423728 100644 --- a/bucket/zig.json +++ b/bucket/zig.json @@ -1,5 +1,5 @@ { - "version": "0.14.0", + "version": "0.14.1", "description": "General-purpose programming language designed for robustness, optimality, and maintainability.", "homepage": "https://ziglang.org/", "license": "MIT", @@ -8,14 +8,19 @@ }, "architecture": { "64bit": { - "url": "https://ziglang.org/download/0.14.0/zig-windows-x86_64-0.14.0.zip", - "hash": "f53e5f9011ba20bbc3e0e6d0a9441b31eb227a97bac0e7d24172f1b8b27b4371", - "extract_dir": "zig-windows-x86_64-0.14.0" + "url": "https://ziglang.org/download/0.14.1/zig-x86_64-windows-0.14.1.zip", + "hash": "554f5378228923ffd558eac35e21af020c73789d87afeabf4bfd16f2e6feed2c", + "extract_dir": "zig-windows-x86_64-0.14.1" + }, + "32bit": { + "url": "https://ziglang.org/download/0.14.1/zig-x86-windows-0.14.1.zip", + "hash": "3ee730c2a5523570dc4dc1b724f3e4f30174ebc1fa109ca472a719586a473b18", + "extract_dir": "zig-windows-aarch64-0.14.1" }, "arm64": { - "url": "https://ziglang.org/download/0.14.0/zig-windows-aarch64-0.14.0.zip", - "hash": "03e984383ebb8f85293557cfa9f48ee8698e7c400239570c9ff1aef3bffaf046", - "extract_dir": "zig-windows-aarch64-0.14.0" + "url": "https://ziglang.org/download/0.14.1/zig-aarch64-windows-0.14.1.zip", + "hash": "b5aac0ccc40dd91e8311b1f257717d8e3903b5fefb8f659de6d65a840ad1d0e7", + "extract_dir": "zig-windows-aarch64-0.14.1" } }, "bin": "zig.exe", @@ -26,11 +31,15 @@ "autoupdate": { "architecture": { "64bit": { - "url": "https://ziglang.org/download/$version/zig-windows-x86_64-$version.zip", + "url": "https://ziglang.org/download/$version/zig-x86_64-windows-$version.zip", "extract_dir": "zig-windows-x86_64-$version" }, + "32bit": { + "url": "https://ziglang.org/download/$version/zig-x86-windows-$version.zip", + "extract_dir": "zig-windows-aarch64-$version" + }, "arm64": { - "url": "https://ziglang.org/download/$version/zig-windows-aarch64-$version.zip", + "url": "https://ziglang.org/download/$version/zig-aarch64-windows-$version.zip", "extract_dir": "zig-windows-aarch64-$version" } },