Skip to content

Commit 2b1a3e7

Browse files
committed
Add changelog and migration entry
1 parent 87ee3c7 commit 2b1a3e7

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ and this project adheres to
3434
- cosmwasm-std: Upgrade to `serde-json-wasm` 1.0. This means `u128` and `i128`
3535
are now serialized as numbers instead of strings. Use `Uint128` and `Int128`
3636
instead. ([#1939])
37+
- cosmwasm-std: Add `ack` parameter to `IbcReceiveResponse::new` and remove
38+
`IbcReceiveResponse::set_ack` ([#1940])
3739
- cosmwasm-std: Make `BalanceResponse`, `AllBalanceResponse`,
3840
`DelegationRewardsResponse`, `DelegatorReward`, `DelegatorValidatorsResponse`,
3941
`PortIdResponse`, `ListChannelsResponse`, `ChannelResponse`,
@@ -51,6 +53,7 @@ and this project adheres to
5153
[#1898]: https://github.com/CosmWasm/cosmwasm/pull/1898
5254
[#1902]: https://github.com/CosmWasm/cosmwasm/pull/1902
5355
[#1939]: https://github.com/CosmWasm/cosmwasm/pull/1939
56+
[#1940]: https://github.com/CosmWasm/cosmwasm/pull/1940
5457

5558
### Removed
5659

MIGRATING.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,13 @@ major releases of `cosmwasm`. Note that you can also view the
107107
+const item: Item<Uint128> = Item::new("item");
108108
```
109109

110+
- Replace all uses of `IbcReceiveResponse::set_ack` with calls to `IbcReceiveResponse::new`:
111+
112+
```diff
113+
- Ok(IbcReceiveResponse::new().set_ack(b"{}"))
114+
+ Ok(IbcReceiveResponse::new(b"{}"))
115+
```
116+
110117
## 1.4.x -> 1.5.0
111118

112119
- Update `cosmwasm-*` dependencies in Cargo.toml (skip the ones you don't use):

0 commit comments

Comments
 (0)