Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
update wasm_opt version
Browse files Browse the repository at this point in the history
  • Loading branch information
wangshishuo committed Apr 4, 2020
1 parent b761c8b commit e7230be
Showing 5 changed files with 6 additions and 6 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
@@ -1,6 +1,6 @@
[package]
name = "ssvmup"
version = "0.1.3"
version = "0.1.4"
authors = ["wangshishuo"]
repository = "https://github.com/second-state/ssvmup.git"
license = "MIT/Apache-2.0"
4 changes: 2 additions & 2 deletions installer/init.sh
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@

set -u

UPDATE_ROOT="https://github.com/second-state/ssvmup/releases/download/v0.1.3"
UPDATE_ROOT="https://github.com/second-state/ssvmup/releases/download/v0.1.4"

main() {
downloader --check
@@ -43,7 +43,7 @@ main() {
which rustup > /dev/null 2>&1
need_ok "failed to find Rust installation, is rustup installed?"
local _rustup=`which rustup`
local _tardir="ssvmup-v0.1.3-${_arch}"
local _tardir="ssvmup-v0.1.4-${_arch}"
local _url="$UPDATE_ROOT/${_tardir}.tar.gz"
local _dir="$(mktemp -d 2>/dev/null || ensure mktemp -d -t ssvmup)"
local _file="$_dir/input.tar.gz"
2 changes: 1 addition & 1 deletion npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ssvmup",
"version": "0.1.3",
"version": "0.1.4",
"description": "SSVM ready tool",
"main": "binary.js",
"scripts": {
2 changes: 1 addition & 1 deletion src/wasm_opt.rs
Original file line number Diff line number Diff line change
@@ -84,7 +84,7 @@ pub fn find_wasm_opt(cache: &Cache, install_permitted: bool) -> Result<WasmOpt,
};
let url = format!(
"https://github.com/WebAssembly/binaryen/releases/download/{vers}/binaryen-{vers}-{target}.tar.gz",
vers = "version_78",
vers = "version_90",
target = target,
);

0 comments on commit e7230be

Please sign in to comment.