Skip to content

Commit

Permalink
Merge pull request #178 from osmosis-labs/update-cosmwasm
Browse files Browse the repository at this point in the history
Update cosmwasm
  • Loading branch information
JakeHartnell committed Nov 30, 2023
2 parents 0b5173e + 23f77ad commit 8e81e70
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ jobs:
- name: Build Wasm images
uses: addnab/docker-run-action@v3
with:
image: cosmwasm/workspace-optimizer:0.12.13
image: cosmwasm/optimizer:0.15.0
options: -v ${{ github.workspace }}:/code
run: optimize_workspace.sh
run: optimize.sh

- name: Create release
uses: softprops/action-gh-release@v1
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ mesh-simple-price-feed = { path = "./contracts/consumer/simple-price-feed" }
mesh-virtual-staking = { path = "./contracts/consumer/virtual-staking" }

sylvia = "0.8.1"
cosmwasm-schema = "1.2.7"
cosmwasm-std = { version = "1.2.7", features = ["ibc3", "cosmwasm_1_2"] }
cosmwasm-schema = "1.3.3"
cosmwasm-std = { version = "1.3.3", features = ["ibc3", "cosmwasm_1_3"] }
cw-storage-plus = "1.1.0"
cw-utils = "1.0.1"
cw2 = "1.0.1"
Expand Down
4 changes: 2 additions & 2 deletions scripts/optimizer.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
:

U="cosmwasm"
V="0.14.0"
V="0.15.0"

M=$(uname -m)
#M="x86_64" # Force Intel arch
Expand All @@ -13,4 +13,4 @@ S=${S:+-$S}
docker run --platform $A --rm -v "$(pwd)":/code \
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
$U/workspace-optimizer$S:$V
$U/optimizer$S:$V

0 comments on commit 8e81e70

Please sign in to comment.