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 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 @@ -10,7 +10,7 @@ license = "Apache-2.0 WITH LLVM-exception"
name = "wizer"
readme = "./README.md"
repository = "https://github.com/bytecodealliance/wizer"
version = "2.0.0"
version = "3.0.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
12 changes: 6 additions & 6 deletions npm/wizer/package-lock.json

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

12 changes: 7 additions & 5 deletions npm/wizer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bytecodealliance/wizer",
"version": "1.6.1-beta.4",
"version": "3.0.0",
"description": "The WebAssembly Pre-Initializer",
"type": "module",
"scripts": {
Expand All @@ -20,10 +20,12 @@
"wizer": "./wizer.js"
},
"optionalDependencies": {
"@bytecodealliance/wizer-darwin-arm64": "1.6.1-beta.4",
"@bytecodealliance/wizer-darwin-x64": "1.6.1-beta.4",
"@bytecodealliance/wizer-linux-x64": "1.6.1-beta.4",
"@bytecodealliance/wizer-win32-x64": "1.6.1-beta.4"
"@bytecodealliance/wizer-darwin-arm64": "3.0.0",
"@bytecodealliance/wizer-darwin-x64": "3.0.0",
"@bytecodealliance/wizer-linux-x64": "3.0.0",
"@bytecodealliance/wizer-linux-arm64": "3.0.0",
"@bytecodealliance/wizer-linux-s390x": "3.0.0",
"@bytecodealliance/wizer-win32-x64": "3.0.0"
},
"license": "Apache-2.0",
"repository": {
Expand Down
14 changes: 14 additions & 0 deletions npm/wizer/update.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,20 @@ let packages = {
os: 'linux',
cpu: 'x64',
},
'wizer-linux-arm64': {
releaseAsset: `wizer-${tag}-arm64-linux.tar.xz`,
binaryAsset: 'wizer',
description : 'The Linux 64-bit binary for Wizer, the WebAssembly Pre-Initializer',
os: 'linux',
cpu: 'arm64',
},
'wizer-linux-s390x': {
releaseAsset: `wizer-${tag}-s390x-linux.tar.xz`,
binaryAsset: 'wizer',
description: 'The Linux S390X binary for Wizer, the WebAssembly Pre-Initializer',
os: 'linux',
cpu: 's390x',
},
'wizer-win32-x64': {
releaseAsset: `wizer-${tag}-x86_64-windows.zip`,
binaryAsset: 'wizer.exe',
Expand Down