From 351fd64d356be00c8fcdd944b93d6a249925790e Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Thu, 11 Mar 2021 07:40:01 +0100 Subject: [PATCH 1/4] Update simapp to 0.42.1 --- scripts/simapp/env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/simapp/env b/scripts/simapp/env index f7454388..d12804a0 100644 --- a/scripts/simapp/env +++ b/scripts/simapp/env @@ -1,4 +1,4 @@ # Choose from https://hub.docker.com/r/interchainio/simapp/tags REPOSITORY="interchainio/simapp" -VERSION="v0.40.0" +VERSION="v0.42.1" CONTAINER_NAME="simapp" From eac5ffa1448b658b9ca3c1e82b623cefc3a779fa Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Thu, 11 Mar 2021 07:41:15 +0100 Subject: [PATCH 2/4] Update version table for CosmJS 0.24 --- packages/cosmwasm-stargate/README.md | 7 ++++--- packages/stargate/README.md | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/packages/cosmwasm-stargate/README.md b/packages/cosmwasm-stargate/README.md index 21faa89c..4fd6dc44 100644 --- a/packages/cosmwasm-stargate/README.md +++ b/packages/cosmwasm-stargate/README.md @@ -6,9 +6,10 @@ An SDK to build CosmWasm clients. ## Compatibility -| CosmWasm | x/wasm | @cosmjs/cosmwasm-stargate | -| -------- | ------ | ------------------------- | -| 0.13 | 0.14 | `^0.24.0` | +| CosmWasm | x/wasm | @cosmjs/cosmwasm-stargate | +| -------- | --------- | ------------------------- | +| 0.14 | 0.16 | `^0.25.0` | +| 0.13 | 0.14-0.15 | `^0.24.0` | ## Development diff --git a/packages/stargate/README.md b/packages/stargate/README.md index d951c2da..fbdd6d4a 100644 --- a/packages/stargate/README.md +++ b/packages/stargate/README.md @@ -8,6 +8,7 @@ A client library for the Cosmos SDK 0.40. | CosmJS version | Supported Cosmos SDK version(s) | | ------------------------------- | ------------------------------- | +| ^0.24.0 | 0.40.x, 0.41.x, 0.42.x | | ^0.24.0-alpha.14 | 0.40.0 | | ^0.24.0-alpha.8 | 0.40.0-rc3 | | 0.24.0-alpha.2 – 0.24.0-alpha.7 | 0.40.0-rc2 | From ecd3926063afcf254bcc98367f078c7e8799b0f4 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Thu, 11 Mar 2021 07:46:24 +0100 Subject: [PATCH 3/4] Update wasmd to 0.15.1 --- scripts/wasmd/env | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/wasmd/env b/scripts/wasmd/env index 40978555..ba967e47 100644 --- a/scripts/wasmd/env +++ b/scripts/wasmd/env @@ -1,5 +1,5 @@ # Choose from https://hub.docker.com/r/cosmwasm/wasmd/tags REPOSITORY="cosmwasm/wasmd" -VERSION="v0.14.0" +VERSION="v0.15.1" CONTAINER_NAME="wasmd" From eb5d806c35f96a52e1d1e0169f40cd998d8a3c7c Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Thu, 11 Mar 2021 08:29:48 +0100 Subject: [PATCH 4/4] Redirect stderr to logfile --- scripts/simapp/start.sh | 2 +- scripts/wasmd/start.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/simapp/start.sh b/scripts/simapp/start.sh index 7ee2d668..73d2ed02 100755 --- a/scripts/simapp/start.sh +++ b/scripts/simapp/start.sh @@ -29,7 +29,7 @@ docker run --rm \ --mount type=volume,source=simapp_data,target=/root \ "$REPOSITORY:$VERSION" \ /template/run_simd.sh \ - >"$SIMD_LOGFILE" & + >"$SIMD_LOGFILE" 2>&1 & echo "simd running on http://localhost:$TENDERMINT_PORT_HOST and logging into $SIMD_LOGFILE" diff --git a/scripts/wasmd/start.sh b/scripts/wasmd/start.sh index e9e4fbd2..ca1b0097 100755 --- a/scripts/wasmd/start.sh +++ b/scripts/wasmd/start.sh @@ -30,7 +30,7 @@ docker run --rm \ --mount type=volume,source=wasmd_data,target=/root \ "$REPOSITORY:$VERSION" \ ./run_wasmd.sh /template \ - >"$WASMD_LOGFILE" & + >"$WASMD_LOGFILE" 2>&1 & echo "wasmd running and logging into $WASMD_LOGFILE"