From 37351f1931234e19da98a4a0e224c0561812d721 Mon Sep 17 00:00:00 2001 From: Christoph Otter Date: Tue, 7 Nov 2023 10:51:57 +0100 Subject: [PATCH] Add changelog and migrating entry --- CHANGELOG.md | 2 ++ MIGRATING.md | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00f9418771..058d3a6817 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,8 +29,10 @@ and this project adheres to - cosmwasm-std: Make inner values of `CanonicalAddr` and `Binary` private and add constructor for `Binary`. ([#1876]) - cosmwasm-vm: Make inner value of `Size` private and add constructor. ([#1876]) +- cosmwasm-std: Remove old IBC version and make v3 the default. ([#1875]) [#1874]: https://github.com/CosmWasm/cosmwasm/pull/1874 +[#1875]: https://github.com/CosmWasm/cosmwasm/pull/1875 [#1876]: https://github.com/CosmWasm/cosmwasm/pull/1876 [#1878]: https://github.com/CosmWasm/cosmwasm/pull/1878 [#1879]: https://github.com/CosmWasm/cosmwasm/pull/1879 diff --git a/MIGRATING.md b/MIGRATING.md index f367462f30..30b18953f9 100644 --- a/MIGRATING.md +++ b/MIGRATING.md @@ -19,6 +19,10 @@ major releases of `cosmwasm`. Note that you can also view the # ... ``` + If you were using cosmwasm-std's `ibc3` feature, you can remove it, as it is + the default now. Depending on your usage, you might have to enable the + `stargate` feature instead, since it was previously implied by `ibc3`. + - `ContractInfoResponse::new` now takes all fields of the response as parameters: