diff --git a/CHANGELOG.md b/CHANGELOG.md index 9636cdd5dc..025c3f24b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -46,13 +46,17 @@ Ref: https://keepachangelog.com/en/1.0.0/ ## [Unreleased] +### Features + +- [860](https://github.com/umee-network/umee/pull/860) Add IBC upgrade and upgrade-client gov proposals. + ### Improvements - [866](https://github.com/umee-network/umee/pull/866) Make the x/oracle keeper's GetExchangeRateBase method more efficient. ### API Breaking -- [870](https://github.com/umee-network/umee/pull/870) chore: Move proto v1beta1 to v1. +- [870](https://github.com/umee-network/umee/pull/870) Move proto v1beta1 to v1. ## [v2.0.1](https://github.com/umee-network/umee/releases/tag/v2.0.1) - 2022-04-25 @@ -62,7 +66,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ ### Bug Fixes -- [829](https://github.com/umee-network/umee/pull/829) Fix `umeed tx leverage liquidate` command args +- [829](https://github.com/umee-network/umee/pull/829) Fix `umeed tx leverage liquidate` command args. ### Improvements diff --git a/app/app.go b/app/app.go index 982fedac64..db5b388d98 100644 --- a/app/app.go +++ b/app/app.go @@ -82,6 +82,7 @@ import ( ibctransfertypes "github.com/cosmos/ibc-go/v2/modules/apps/transfer/types" ibc "github.com/cosmos/ibc-go/v2/modules/core" ibcclient "github.com/cosmos/ibc-go/v2/modules/core/02-client" + ibcclientclient "github.com/cosmos/ibc-go/v2/modules/core/02-client/client" ibcclienttypes "github.com/cosmos/ibc-go/v2/modules/core/02-client/types" ibcporttypes "github.com/cosmos/ibc-go/v2/modules/core/05-port/types" ibchost "github.com/cosmos/ibc-go/v2/modules/core/24-host" @@ -918,6 +919,8 @@ func getGovProposalHandlers() []govclient.ProposalHandler { upgradeclient.ProposalHandler, upgradeclient.CancelProposalHandler, leverageclient.ProposalHandler, + ibcclientclient.UpdateClientProposalHandler, + ibcclientclient.UpgradeProposalHandler, } }