File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -21,9 +21,18 @@ major releases of `cosmwasm`. Note that you can also view the
2121
2222 If you were using cosmwasm-std's ` ibc3 ` feature, you can remove it, as it is
2323 the default now. Depending on your usage, you might have to enable the
24- ` stargate ` feature instead, since it was previously implied by ` ibc3 ` . Also
25- remove any uses of the ` backtraces ` feature. You can use a ` RUST_BACKTRACE=1 `
26- env variable for this now.
24+ ` stargate ` feature instead, since it was previously implied by ` ibc3 ` .
25+
26+ Also remove any uses of the ` backtraces ` feature. You can use a
27+ ` RUST_BACKTRACE=1 ` env variable for this now.
28+
29+ If you were using ` cosmwasm-std ` with ` default-features = false ` , you probably
30+ want to enable the ` std ` feature now, as we might move certain existing
31+ functionality to that feature in the future to support no_std environments:
32+
33+ ``` toml
34+ cosmwasm-std = { version = " 2.0.0" , default-features = false , features = [" std" , ...] }
35+ ```
2736
2837- `ContractInfoResponse::new` now takes all fields of the response as
2938 parameters:
You can’t perform that action at this time.
0 commit comments