Skip to content

Commit ab69fdc

Browse files
committed
Update docker tag / CHANGELOG
1 parent ac30887 commit ab69fdc

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 0.10.6
4+
5+
- Add support for building multiple non-workspace contracts at once (#25)
6+
37
## 0.10.5
48

59
- Remove `trzeci/emscripten` dependency and install `wasm-opt` manually

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
DOCKER_NAME_RUST_OPTIMIZER := "cosmwasm/rust-optimizer"
44
DOCKER_NAME_WORKSPACE_OPTIMIZER := "cosmwasm/workspace-optimizer"
5-
DOCKER_TAG := 0.10.5
5+
DOCKER_TAG := 0.10.6
66

77
build-rust-optimizer:
88
docker build -t $(DOCKER_NAME_RUST_OPTIMIZER):$(DOCKER_TAG) --file rust-optimizer.Dockerfile .

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ you to produce a smaller build that works with the cosmwasm integration tests
2424
docker run --rm -v "$(pwd)":/code \
2525
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target \
2626
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
27-
cosmwasm/rust-optimizer:0.10.5
27+
cosmwasm/rust-optimizer:0.10.6
2828
```
2929

3030
Demo this with `cosmwasm-examples` (going into eg. `erc20` subdir before running),
@@ -57,7 +57,7 @@ To compile all contracts in the workspace deterministically, you can run:
5757
docker run --rm -v "$(pwd)":/code \
5858
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target \
5959
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
60-
cosmwasm/workspace-optimizer:0.10.5
60+
cosmwasm/workspace-optimizer:0.10.6
6161
```
6262

6363
The downside is that to verify one contract in the workspace, you need to compile them
@@ -83,7 +83,7 @@ case, we can use the optimize.sh command:
8383
docker run --rm -v "$(pwd)":/code \
8484
--mount type=volume,source="devcontract_cache_burner",target=/code/contracts/burner/target \
8585
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
86-
cosmwasm/rust-optimizer:0.10.5 ./contracts/burner
86+
cosmwasm/rust-optimizer:0.10.6 ./contracts/burner
8787
```
8888

8989
## Development

0 commit comments

Comments
 (0)