Skip to content

Commit 61e9b58

Browse files
committed
fix(windows): correct wac checksum for Windows + add v0.8.0 to wac.json
Windows wac checksum was wrong for both v0.7.0 and v0.8.0. Also added missing v0.8.0 entry to wac.json (was only in registry.bzl). Correct checksum: 7ee34ea41cd567b2578929acce3c609e28818d03f0414914a3939f066737d872 Wrong checksum: d8c65e5471fc242d8c4993e2125912e10e9373f1e38249157491b3c851bd1336
1 parent 1b5da91 commit 61e9b58

File tree

2 files changed

+28
-3
lines changed

2 files changed

+28
-3
lines changed

checksums/registry.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def _get_fallback_checksums(tool_name):
230230
"platform_name": "aarch64-unknown-linux-musl",
231231
},
232232
"windows_amd64": {
233-
"sha256": "d8c65e5471fc242d8c4993e2125912e10e9373f1e38249157491b3c851bd1336",
233+
"sha256": "7ee34ea41cd567b2578929acce3c609e28818d03f0414914a3939f066737d872",
234234
"platform_name": "x86_64-pc-windows-gnu",
235235
},
236236
},
@@ -255,7 +255,7 @@ def _get_fallback_checksums(tool_name):
255255
"platform_name": "aarch64-unknown-linux-musl",
256256
},
257257
"windows_amd64": {
258-
"sha256": "d8c65e5471fc242d8c4993e2125912e10e9373f1e38249157491b3c851bd1336",
258+
"sha256": "7ee34ea41cd567b2578929acce3c609e28818d03f0414914a3939f066737d872",
259259
"platform_name": "x86_64-pc-windows-gnu",
260260
},
261261
},

checksums/tools/wac.json

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,32 @@
2424
"platform_name": "aarch64-apple-darwin"
2525
},
2626
"windows_amd64": {
27-
"sha256": "d8c65e5471fc242d8c4993e2125912e10e9373f1e38249157491b3c851bd1336",
27+
"sha256": "7ee34ea41cd567b2578929acce3c609e28818d03f0414914a3939f066737d872",
28+
"platform_name": "x86_64-pc-windows-gnu"
29+
}
30+
}
31+
},
32+
"0.8.0": {
33+
"release_date": "2024-08-20",
34+
"platforms": {
35+
"linux_amd64": {
36+
"sha256": "9fee2d8603dc50403ebed580b47b8661b582ffde8a9174bf193b89ca00decf0f",
37+
"platform_name": "x86_64-unknown-linux-musl"
38+
},
39+
"linux_arm64": {
40+
"sha256": "af966d4efbd411900073270bd4261ac42d9550af8ba26ed49288bb942476c5a9",
41+
"platform_name": "aarch64-unknown-linux-musl"
42+
},
43+
"darwin_amd64": {
44+
"sha256": "cc58f94c611b3b7f27b16dd0a9a9fc63c91c662582ac7eaa9a14f2dac87b07f8",
45+
"platform_name": "x86_64-apple-darwin"
46+
},
47+
"darwin_arm64": {
48+
"sha256": "6ca7f69f3e2bbab41f375a35e486d53e5b4968ea94271ea9d9bd59b0d2b65c13",
49+
"platform_name": "aarch64-apple-darwin"
50+
},
51+
"windows_amd64": {
52+
"sha256": "7ee34ea41cd567b2578929acce3c609e28818d03f0414914a3939f066737d872",
2853
"platform_name": "x86_64-pc-windows-gnu"
2954
}
3055
}

0 commit comments

Comments
 (0)