Skip to content

Commit

Permalink
bump cw optimizer version to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
dev8723 committed Oct 18, 2023
1 parent 3b0f715 commit 47c7632
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/deployment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ const optimizeContract = async ({
const folder = path.join('contracts', contract);
process.chdir(folder);

const image = `cosmwasm/rust-optimizer${arm64 ? '-arm64' : ''}:0.12.6`;
const image = `cosmwasm/rust-optimizer${arm64 ? '-arm64' : ''}:0.14.0`;

execDockerOptimization(image, contract);

Expand All @@ -102,7 +102,7 @@ const optimizeWorkspace = async ({
contract,
arm64,
}: OptimizeContractParams) => {
const image = `cosmwasm/workspace-optimizer${arm64 ? '-arm64' : ''}:0.12.6`;
const image = `cosmwasm/workspace-optimizer${arm64 ? '-arm64' : ''}:0.14.0`;
execDockerOptimization(image, contract);
};

Expand Down

0 comments on commit 47c7632

Please sign in to comment.