Skip to content

Commit ffc496a

Browse files
committed
Set version: 0.12.13
1 parent 23d64a3 commit ffc496a

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.12.13] - 2023-03-30
6+
57
- Bump Rust to 1.68.2.\
68
This contains [cargo's sparse protocol support](https://blog.rust-lang.org/2023/03/09/Rust-1.68.0.html) which is enabled here.
79

@@ -183,7 +185,8 @@ sources and should not be used. 0.7.0, 0.7.1 and 0.7.3 unaffected.
183185
- Bump emscripten to 1.39.8-fastcomp
184186
- Bump Rust to 1.41.0
185187

186-
[unreleased]: https://github.com/CosmWasm/rust-optimizer/compare/v0.12.12...HEAD
188+
[unreleased]: https://github.com/CosmWasm/rust-optimizer/compare/v0.12.13...HEAD
189+
[0.12.13]: https://github.com/CosmWasm/rust-optimizer/compare/v0.12.12...v0.12.13
187190
[0.12.12]: https://github.com/CosmWasm/rust-optimizer/compare/v0.12.11...v0.12.12
188191
[0.12.11]: https://github.com/CosmWasm/rust-optimizer/compare/v0.12.10...v0.12.11
189192
[0.12.10]: https://github.com/CosmWasm/rust-optimizer/compare/v0.12.9...v0.12.10

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.12.12
5+
DOCKER_TAG := 0.12.13
66

77
# Native arch
88
BUILDARCH := $(shell uname -m)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ you to produce a smaller build that works with the cosmwasm integration tests
2929
docker run --rm -v "$(pwd)":/code \
3030
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target \
3131
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
32-
cosmwasm/rust-optimizer:0.12.12
32+
cosmwasm/rust-optimizer:0.12.13
3333
```
3434

3535
Demo this with `cosmwasm-examples` (going into eg. `erc20` subdir before running),
@@ -62,7 +62,7 @@ To compile all contracts in the workspace deterministically, you can run:
6262
docker run --rm -v "$(pwd)":/code \
6363
--mount type=volume,source="$(basename "$(pwd)")_cache",target=/code/target \
6464
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
65-
cosmwasm/workspace-optimizer:0.12.12
65+
cosmwasm/workspace-optimizer:0.12.13
6666
```
6767

6868
The downside is that to verify one contract in the workspace, you need to compile them
@@ -88,7 +88,7 @@ case, we can use the optimize.sh command:
8888
docker run --rm -v "$(pwd)":/code \
8989
--mount type=volume,source="devcontract_cache_burner",target=/code/contracts/burner/target \
9090
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
91-
cosmwasm/rust-optimizer:0.12.12 ./contracts/burner
91+
cosmwasm/rust-optimizer:0.12.13 ./contracts/burner
9292
```
9393

9494
## Development

0 commit comments

Comments
 (0)