Skip to content

Commit

Permalink
Version 0.3.2, and a few URL fixes.
Browse files Browse the repository at this point in the history
Let's release another point-release with #9 (updates to the npm README
to point to the new BA-hosted repo location). This also updates a few
URLs in the npm `package.json` with the old location.
  • Loading branch information
cfallin committed Sep 13, 2024
1 parent 1fc5040 commit 78bed0d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "weval"
description = "The WebAssembly partial evaluator"
repository = "https://github.com/bytecodealliance/weval"
version = "0.3.1"
version = "0.3.2"
authors = ["Chris Fallin <[email protected]>"]
license = "Apache-2.0 WITH LLVM-exception"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion npm/weval/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import decompressTar from 'decompress-tar';
import xz from '@napi-rs/lzma/xz';
const __dirname = dirname(fileURLToPath(import.meta.url));

const TAG = "v0.3.1";
const TAG = "v0.3.2";

async function getWeval() {
const knownPlatforms = {
Expand Down
8 changes: 4 additions & 4 deletions npm/weval/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bytecodealliance/weval",
"version": "0.3.1",
"version": "0.3.2",
"description": "The WebAssembly partial evaluator",
"type": "module",
"scripts": {
Expand All @@ -19,10 +19,10 @@
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/cfallin/weval.git"
"url": "git+https://github.com/bytecodealliance/weval.git"
},
"bugs": {
"url": "https://github.com/cfallin/weval/issues"
"url": "https://github.com/bytecodealliance/weval/issues"
},
"homepage": "https://github.com/cfallin/weval#readme"
"homepage": "https://github.com/bytecodealliance/weval#readme"
}

0 comments on commit 78bed0d

Please sign in to comment.