File tree 1 file changed +17
-3
lines changed
1 file changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,20 @@ major releases of `cosmwasm`. Note that you can also view the
6
6
7
7
## 1.0.0 -> 1.1.0
8
8
9
+ - Update ` cosmwasm-* ` dependencies in Cargo.toml (skip the ones you don't use):
10
+
11
+ ```
12
+ [dependencies]
13
+ cosmwasm-std = "1.1.0"
14
+ cosmwasm-storage = "1.1.0"
15
+ # ...
16
+
17
+ [dev-dependencies]
18
+ cosmwasm-schema = "1.1.0"
19
+ cosmwasm-vm = "1.1.0"
20
+ # ...
21
+ ```
22
+
9
23
- There are changes to how we generate schemas, resulting in less boilerplace
10
24
maintenance for smart contract devs. Old contracts will continue working for a
11
25
while, but it's highly recommended to migrate now.
@@ -15,15 +29,15 @@ major releases of `cosmwasm`. Note that you can also view the
15
29
16
30
``` diff
17
31
[dependencies]
18
- + cosmwasm-schema = { version = "1.0 .0" }
19
- cosmwasm-std = { version = "1.0 .0", features = ["stargate"] }
32
+ + cosmwasm-schema = { version = "1.1 .0" }
33
+ cosmwasm-std = { version = "1.1 .0", features = ["stargate"] }
20
34
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.10.0" }
21
35
schemars = "0.8.1"
22
36
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
23
37
thiserror = { version = "1.0.23" }
24
38
25
39
[dev-dependencies]
26
- - cosmwasm-schema = { version = "1.0 .0" }
40
+ - cosmwasm-schema = { version = "1.1 .0" }
27
41
```
28
42
29
43
Types you send to the contract and receive back are annotated with a bunch of
You can’t perform that action at this time.
0 commit comments