From 0062eaa22c0b317a46b9c9cdf17c1b807f953e92 Mon Sep 17 00:00:00 2001 From: dudong2 Date: Fri, 2 Aug 2024 15:25:22 +0900 Subject: [PATCH 1/2] bug: resolve keyring flag properly --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 32848fee..3a8f962c 100644 --- a/go.mod +++ b/go.mod @@ -6,7 +6,7 @@ toolchain go1.21.4 require ( cosmossdk.io/api v0.7.5 - cosmossdk.io/client/v2 v2.0.0-beta.1 + cosmossdk.io/client/v2 v2.0.0-beta.1.0.20240124105859-5ad1805d0e79 cosmossdk.io/collections v0.4.0 cosmossdk.io/core v0.12.0 cosmossdk.io/errors v1.0.1 diff --git a/go.sum b/go.sum index 343575e1..e7320834 100644 --- a/go.sum +++ b/go.sum @@ -186,8 +186,8 @@ cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1V cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= cosmossdk.io/api v0.7.5 h1:eMPTReoNmGUm8DeiQL9DyM8sYDjEhWzL1+nLbI9DqtQ= cosmossdk.io/api v0.7.5/go.mod h1:IcxpYS5fMemZGqyYtErK7OqvdM0C8kdW3dq8Q/XIG38= -cosmossdk.io/client/v2 v2.0.0-beta.1 h1:XkHh1lhrLYIT9zKl7cIOXUXg2hdhtjTPBUfqERNA1/Q= -cosmossdk.io/client/v2 v2.0.0-beta.1/go.mod h1:JEUSu9moNZQ4kU3ir1DKD5eU4bllmAexrGWjmb9k8qU= +cosmossdk.io/client/v2 v2.0.0-beta.1.0.20240124105859-5ad1805d0e79 h1:Hr1t0fCq1nbFC7hLs0Xvy9WAiH7Iti5iVLXMM5C37F0= +cosmossdk.io/client/v2 v2.0.0-beta.1.0.20240124105859-5ad1805d0e79/go.mod h1:8pN6LSVReNnIxrC2QGcvuIJ/m1pJN6FNYn2kAYtYftI= cosmossdk.io/collections v0.4.0 h1:PFmwj2W8szgpD5nOd8GWH6AbYNi1f2J6akWXJ7P5t9s= cosmossdk.io/collections v0.4.0/go.mod h1:oa5lUING2dP+gdDquow+QjlF45eL1t4TJDypgGd+tv0= cosmossdk.io/core v0.11.0 h1:vtIafqUi+1ZNAE/oxLOQQ7Oek2n4S48SWLG8h/+wdbo= From fca2b876ea47328bc2e79ea73488e8ec3ead1219 Mon Sep 17 00:00:00 2001 From: dudong2 Date: Fri, 2 Aug 2024 15:52:35 +0900 Subject: [PATCH 2/2] docs: Update changelog --- CHANGELOG.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7103e95a..d0c866aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -35,23 +35,22 @@ Ref: https://keepachangelog.com/en/1.0.0/ # CHANGELOG -## Unreleased +## v8.0.0 ### State Machine Breaking -- (deps) [#126](https://github.com/Canto-Network/Canto/pull/126) Bump Comsos-SDK to v0.50.6, CometBFT to v0.38.6, ibc-go to v8.2.1 - +- (deps) [#129](https://github.com/Canto-Network/Canto/pull/129) Bump Comsos-SDK to [v0.50.8](https://github.com/cosmos/cosmos-sdk/releases/v0.50.8), CometBFT to [v0.38.9](https://github.com/cometbft/cometbft/releases/v0.38.9), ibc-go to [v8.3.2](https://github.com/cosmos/ibc-go/releases/v8.3.2), ethermint to [v0.22.0-sdk50-1](https://github.com/b-harvest/ethermint/releases/v0.22.0-sdk50-1) ### Improvements -- (ante) [#126](https://github.com/Canto-Network/Canto/pull/126) Remove NewValidatorCommissionDecorator because its logic is duplicated with the logic implemented in the staking module's msg server. -- (x/*) [#126](https://github.com/Canto-Network/Canto/pull/126) Apply Cosmos-SDK improvements. +- (ante) [#129](https://github.com/Canto-Network/Canto/pull/129) Remove NewValidatorCommissionDecorator because its logic is duplicated with the logic implemented in the staking module's msg server. +- (x/*) [#129](https://github.com/Canto-Network/Canto/pull/129) Apply Cosmos-SDK improvements. - Remove `Type()` and `Route()` methods from all msgs - Remove `GetSigner()` methods from all msgs, move their logic to protobuf and define a custom GetSigner func if needed. - `authority` has been added to the required module to execute proposal msgs. ### Client Breaking -- (x/*) [#126](https://github.com/Canto-Network/Canto/pull/126) module-specific proposal and update params is moved to msg levelto to support msgs-based gov proposals. +- (x/*) [#129](https://github.com/Canto-Network/Canto/pull/129) module-specific proposal and update params is moved to msg levelto to support msgs-based gov proposals.