Skip to content

Commit

Permalink
chore: update contract versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kerber0x committed Jan 9, 2024
1 parent 3aad882 commit ac41765
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stableswap-3pool"
version = "1.2.2"
version = "1.2.3"
authors = [
"Adam J. Weigold <[email protected]>",
]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "terraswap-factory"
version = "1.2.1"
version = "1.2.2"
authors = [
"Terraform Labs, PTE.",
"DELIGHT LABS",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "terraswap-pair"
version = "1.3.3"
version = "1.3.4"
authors = [
"Terraform Labs, PTE.",
"DELIGHT LABS",
Expand Down
9 changes: 6 additions & 3 deletions scripts/build_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ flag=""

case $chain in

juno | terra | osmosis)
osmosis)
flag="-osmosis"
;;
juno | terra)
flag="-osmosis_token_factory"
;;
migaloo)
Expand Down Expand Up @@ -66,9 +69,9 @@ docker_options=(

# Optimized builds
if [[ "$arch" == "aarch64" || "$arch" == "arm64" ]]; then
docker_command=("docker" "run" "${docker_options[@]}" "cosmwasm/workspace-optimizer-arm64:0.14.0$flag")
docker_command=("docker" "run" "${docker_options[@]}" "cosmwasm/optimizer-arm64:0.15.0$flag")
else
docker_command=("docker" "run" "${docker_options[@]}" "cosmwasm/workspace-optimizer:0.14.0$flag")
docker_command=("docker" "run" "${docker_options[@]}" "cosmwasm/optimizer:0.15.0$flag")
fi

echo "${docker_command[@]}"
Expand Down

0 comments on commit ac41765

Please sign in to comment.