zig: Update to version 0.14.1, add 32bit

This commit is contained in:
HUMORCE 2025-05-25 08:59:15 +00:00
parent 3426d37b1b
commit 40314c65ea
No known key found for this signature in database
GPG Key ID: FF7A96FF20AE10DC

View File

@ -1,5 +1,5 @@
{ {
"version": "0.14.0", "version": "0.14.1",
"description": "General-purpose programming language designed for robustness, optimality, and maintainability.", "description": "General-purpose programming language designed for robustness, optimality, and maintainability.",
"homepage": "https://ziglang.org/", "homepage": "https://ziglang.org/",
"license": "MIT", "license": "MIT",
@ -8,14 +8,19 @@
}, },
"architecture": { "architecture": {
"64bit": { "64bit": {
"url": "https://ziglang.org/download/0.14.0/zig-windows-x86_64-0.14.0.zip", "url": "https://ziglang.org/download/0.14.1/zig-x86_64-windows-0.14.1.zip",
"hash": "f53e5f9011ba20bbc3e0e6d0a9441b31eb227a97bac0e7d24172f1b8b27b4371", "hash": "554f5378228923ffd558eac35e21af020c73789d87afeabf4bfd16f2e6feed2c",
"extract_dir": "zig-windows-x86_64-0.14.0" "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": { "arm64": {
"url": "https://ziglang.org/download/0.14.0/zig-windows-aarch64-0.14.0.zip", "url": "https://ziglang.org/download/0.14.1/zig-aarch64-windows-0.14.1.zip",
"hash": "03e984383ebb8f85293557cfa9f48ee8698e7c400239570c9ff1aef3bffaf046", "hash": "b5aac0ccc40dd91e8311b1f257717d8e3903b5fefb8f659de6d65a840ad1d0e7",
"extract_dir": "zig-windows-aarch64-0.14.0" "extract_dir": "zig-windows-aarch64-0.14.1"
} }
}, },
"bin": "zig.exe", "bin": "zig.exe",
@ -26,11 +31,15 @@
"autoupdate": { "autoupdate": {
"architecture": { "architecture": {
"64bit": { "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" "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": { "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" "extract_dir": "zig-windows-aarch64-$version"
} }
}, },