feat(shim): close INT-10 — pin v0.1.1 (full coverage), bump shim 0.1.2 by hyperpolymath · Pull Request #295 · hyperpolymath/affinescript · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/affinescript-cli/deno.json
11 changes: 4 additions & 7 deletions packages/affinescript-cli/pins.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,22 @@ function assetUrl(version, target) {
return `${REPO}/releases/download/${version}/affinescript-${target}`;
}

export const VERSION = "v0.1.0";
export const VERSION = "v0.1.1";

export const PINS = {
version: VERSION,
targets: {
"linux-x64": {
url: assetUrl(VERSION, "linux-x64"),
sha256: "c1ce65308bace96669d2a178732cd5ee180845d85a5775e119a221b98fe2a5da",
sha256: "b8f2cab7380306ca07b9599d7fe2470328236e7287a51c78c3bbb5e973fef5dc",
},
"macos-x64": {
// v0.1.0 macos-13 build was stuck in the runner queue at tag time;
// left fail-closed (empty sha256 ⇒ resolveCompiler refuses) until
// a follow-up release re-attempts the macos-x64 leg.
url: assetUrl(VERSION, "macos-x64"),
sha256: "",
sha256: "6bc3837ef94f9b56a8bb63cec84c3f0ddf2d7e1092f49aa1d389da389b28b5e2",
},
"macos-arm64": {
url: assetUrl(VERSION, "macos-arm64"),
sha256: "2cac3ba54ae7778d31d1bd780d11b56a5cf78b5d5ee6c1d33edd3f8e753943d5",
sha256: "7f7cb5ee6b7ef37818498813891a2cd636300da7cb4a59e938031c78c0ee3589",
},
},
};
2 changes: 1 addition & 1 deletion tools/affinescript-lsp/src/compiler.rs
Loading