diff --git a/CHANGELOG.md b/CHANGELOG.md index 89cdd94f..640fd089 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 0.11.0 + +### Improvements +* Rust 1.78; +* Cosmwasm optimizer 0.16; +* [CosmWasm STD is upgraded to v2.0](https://github.com/neutron-org/neutron-sdk/pull/147); +* ICQ balances query is [improved](https://github.com/neutron-org/neutron-sdk/pull/130) to support a list of denoms to query balances of; + +### Added +* [Proto types generation](https://github.com/neutron-org/neutron-sdk/pull/125); for Stargate queries and messages; +* [ICQ for proposal voters](https://github.com/neutron-org/neutron-sdk/pull/129); +* `MsgRegisterInterchainAccountResponse` binding response [is added](https://github.com/neutron-org/neutron-sdk/pull/138), so now contracts are able to catch `channel_id` and `port_id` directly in a reply handler of `MsgRegisterInterchainAccount`; +* [Bindings](https://github.com/neutron-org/neutron-sdk/pull/141) for Slinky Oracle and MarketMap; +* `limit_sell_price` [is added](https://github.com/neutron-org/neutron-sdk/pull/143) to `PlaceLimitOrder` DEX message; + ## 0.10.0 Bindings for [Neutron Dex module](https://docs.neutron.org/neutron/modules/dex/overview/) is added. diff --git a/MIGRATING.md b/MIGRATING.md index f4d66282..967e8389 100644 --- a/MIGRATING.md +++ b/MIGRATING.md @@ -4,6 +4,18 @@ This guide explains what is needed to upgrade contracts when migrating over rele also view the [complete CHANGELOG](./CHANGELOG.md) to understand the differences. +## 0.10.0 -> 0.11.0 + +* Update`neutron-sdk`dependencies in Cargo.toml: + +``` +[dependencies] +neutron-sdk = "0.11.0" +# ... +``` + +* Follow [CosmWasm MIGRATING.md instructions ](https://github.com/CosmWasm/cosmwasm/blob/main/MIGRATING.md#15x---20x) to update to v2.0 version of `cosmwasm-std` + ## 0.9.0 -> 0.10.0 * Update`neutron-sdk`dependencies in Cargo.toml: @@ -45,4 +57,4 @@ neutron-sdk = "0.9.0" ```diff -use neutron_sdk::interchain_txs::helpers::decode_acknowledgement_response; +use neutron_sdk::interchain_txs::v047::helpers::decode_acknowledgement_response; -``` \ No newline at end of file +```