Skip to content

Commit

Permalink
v0.11.0 release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
pr0n00gler committed Jul 9, 2024
1 parent 039d33c commit 48315fb
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
14 changes: 13 additions & 1 deletion MIGRATING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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;
```
```

0 comments on commit 48315fb

Please sign in to comment.