Skip to content

Commit 587a47d

Browse files
committed
Version 0.3.0.
Also switch npm package over to referring to BA paths rather than paths under my own namespace.
1 parent 1eb88cf commit 587a47d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "weval"
33
description = "The WebAssembly partial evaluator"
44
repository = "https://github.com/bytecodealliance/weval"
5-
version = "0.2.14"
5+
version = "0.3.0"
66
authors = ["Chris Fallin <[email protected]>"]
77
license = "Apache-2.0 WITH LLVM-exception"
88
edition = "2021"

npm/weval/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import decompressTar from 'decompress-tar';
1010
import xz from '@napi-rs/lzma/xz';
1111
const __dirname = dirname(fileURLToPath(import.meta.url));
1212

13-
const TAG = "v0.2.14";
13+
const TAG = "v0.3.0";
1414

1515
async function getWeval() {
1616
const knownPlatforms = {
@@ -27,7 +27,7 @@ async function getWeval() {
2727
if (platformKey in knownPlatforms) {
2828
return knownPlatforms[platformKey];
2929
}
30-
throw new Error(`Unsupported platform: "${platformKey}". "weval does not have a precompiled binary for the platform/architecture you are using. You can open an issue on https://github.com/cfallin/weval/issues to request for your platform/architecture to be included."`);
30+
throw new Error(`Unsupported platform: "${platformKey}". "weval does not have a precompiled binary for the platform/architecture you are using. You can open an issue on https://github.com/bytecodealliance/weval/issues to request for your platform/architecture to be included."`);
3131
}
3232

3333
async function getJSON(url) {
@@ -49,7 +49,7 @@ async function getWeval() {
4949
if (!existsSync(exe)) {
5050
await mkdir(exeDir, { recursive: true });
5151

52-
let repoBaseURL = `https://api.github.com/repos/cfallin/weval`;
52+
let repoBaseURL = `https://api.github.com/repos/bytecodealliance/weval`;
5353
let response = await getJSON(`${repoBaseURL}/releases/tags/${TAG}`);
5454
let id = response.id;
5555
let assets = await getJSON(`${repoBaseURL}/releases/${id}/assets`);

npm/weval/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@cfallin/weval",
3-
"version": "0.2.14",
2+
"name": "@bytecodealliance/weval",
3+
"version": "0.3.0",
44
"description": "The WebAssembly partial evaluator",
55
"type": "module",
66
"scripts": {

0 commit comments

Comments
 (0)