Skip to content

Commit 44ecf40

Browse files
authored
Merge pull request #463 from dongsam/dongsam/release-v1.4.2
release liquidity v1.4.2
2 parents 6fad886 + 34bef97 commit 44ecf40

File tree

5 files changed

+17
-277
lines changed

5 files changed

+17
-277
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,11 @@ Ref: https://keepachangelog.com/en/1.0.0/
3737

3838
## [Unreleased]
3939

40-
## [v1.4.1](https://github.com/tendermint/liquidity/releases) - 2021.10.25
40+
## [v1.4.2](https://github.com/tendermint/liquidity/releases) - 2021.11.11
41+
42+
* [\#461](https://github.com/tendermint/liquidity/pull/461) (sdk) Bump SDK version to [v0.44.3](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.44.3)
43+
44+
## [v1.4.1](https://github.com/tendermint/liquidity/releases/tag/v1.4.1) - 2021.10.25
4145

4246
* [\#455](https://github.com/tendermint/liquidity/pull/455) (sdk) Bump SDK version to [v0.44.2](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.44.2)
4347
* [\#446](https://github.com/tendermint/liquidity/pull/446) Fix: Pool Coin Decimal Truncation During Deposit

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- markdown-link-check-disable-next-line -->
12
[![codecov](https://codecov.io/gh/tendermint/liquidity/branch/develop/graph/badge.svg)](https://codecov.io/gh/tendermint/liquidity?branch=develop)
23
[![PkgGoDev](https://pkg.go.dev/badge/github.com/tendermint/liquidity)](https://pkg.go.dev/github.com/tendermint/liquidity)
34

cmd/liquidityd/cmd/root.go

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,12 @@ func NewRootCmd() (*cobra.Command, params.EncodingConfig) {
5555
cmd.SetOut(cmd.OutOrStdout())
5656
cmd.SetErr(cmd.ErrOrStderr())
5757

58-
initClientCtx = client.ReadHomeFlag(initClientCtx, cmd)
58+
initClientCtx, err := client.ReadPersistentCommandFlags(initClientCtx, cmd.Flags())
59+
if err != nil {
60+
return err
61+
}
5962

60-
initClientCtx, err := config.ReadFromClientConfig(initClientCtx)
63+
initClientCtx, err = config.ReadFromClientConfig(initClientCtx)
6164
if err != nil {
6265
return err
6366
}

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ go 1.15
33
module github.com/tendermint/liquidity
44

55
require (
6-
github.com/cosmos/cosmos-sdk v0.44.2
6+
github.com/cosmos/cosmos-sdk v0.44.3
77
github.com/gogo/protobuf v1.3.3
88
github.com/golang/mock v1.6.0
99
github.com/golang/protobuf v1.5.2
@@ -16,7 +16,7 @@ require (
1616
github.com/spf13/pflag v1.0.5
1717
github.com/spf13/viper v1.8.1
1818
github.com/stretchr/testify v1.7.0
19-
github.com/tendermint/tendermint v0.34.13
19+
github.com/tendermint/tendermint v0.34.14
2020
github.com/tendermint/tm-db v0.6.4
2121
google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c
2222
google.golang.org/grpc v1.40.0

0 commit comments

Comments
 (0)