File tree 4 files changed +19
-6
lines changed
4 files changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,18 @@ Ref: https://keepachangelog.com/en/1.0.0/
27
27
-->
28
28
29
29
# Changelog
30
+ ## v3.2.1
31
+ sei-chain:
32
+ * [ #1073 ] ( https://github.com/sei-protocol/sei-chain/pull/1073 ) Add timestamp to oracle exchange rates
33
+
34
+ sei-cosmos:
35
+ * [ #320 ] ( https://github.com/sei-protocol/sei-cosmos/pull/320 ) Allow minor relase upgrades prior to upgrade height
36
+
37
+ sei-tendermint:
38
+ * [ #158 ] ( https://github.com/sei-protocol/sei-tendermint/pull/158 ) Add metrics for peermanager scores
39
+ * [ #157 ] ( https://github.com/sei-protocol/sei-tendermint/pull/157 ) Fix findNewPrimary never timing out upon encountering poor witnesses
40
+ * [ #156 ] ( https://github.com/sei-protocol/sei-tendermint/pull/156 ) Remove bad witness and don't block on all witnesses for ConsensusParams
41
+
30
42
## v3.1.1
31
43
sei-ibc-go:
32
44
* [ #34 ] ( https://github.com/sei-protocol/sei-ibc-go/pull/34 ) Upgrade to Ibc v3.2.0
Original file line number Diff line number Diff line change @@ -62,6 +62,7 @@ var upgradesList = []string{
62
62
"3.0.8" ,
63
63
"v3.0.9" ,
64
64
"v3.1.1" ,
65
+ "v3.2.1" ,
65
66
}
66
67
67
68
// if there is an override list, use that instead, for integration tests
Original file line number Diff line number Diff line change @@ -273,12 +273,12 @@ require (
273
273
replace (
274
274
github.com/CosmWasm/wasmd => github.com/sei-protocol/sei-wasmd v0.0.2
275
275
github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0
276
- github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.2.62
276
+ github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.2.63
277
277
github.com/cosmos/iavl => github.com/sei-protocol/sei-iavl v0.1.7
278
278
github.com/cosmos/ibc-go/v3 => github.com/sei-protocol/sei-ibc-go/v3 v3.2.0
279
279
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
280
280
github.com/keybase/go-keychain => github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4
281
- github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.2.27
281
+ github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.2.28
282
282
github.com/tendermint/tm-db => github.com/sei-protocol/tm-db v0.0.4
283
283
google.golang.org/grpc => google.golang.org/grpc v1.33.2
284
284
)
Original file line number Diff line number Diff line change @@ -1074,14 +1074,14 @@ github.com/securego/gosec/v2 v2.11.0/go.mod h1:SX8bptShuG8reGC0XS09+a4H2BoWSJi+f
1074
1074
github.com/segmentio/fasthash v1.0.3 /go.mod h1:waKX8l2N8yckOgmSsXJi7x1ZfdKZ4x7KRMzBtS3oedY =
1075
1075
github.com/sei-protocol/goutils v0.0.2 h1:Bfa7Sv+4CVLNM20QcpvGb81B8C5HkQC/kW1CQpIbXDA =
1076
1076
github.com/sei-protocol/goutils v0.0.2 /go.mod h1:iYE2DuJfEnM+APPehr2gOUXfuLuPsVxorcDO+Tzq9q8 =
1077
- github.com/sei-protocol/sei-cosmos v0.2.62 h1:JfT6WcEWfqTmN/xaRr1nSS84wmQCOXZ6g6dknCBCB1c =
1078
- github.com/sei-protocol/sei-cosmos v0.2.62 /go.mod h1:IdRmfhjeuY+S3HLd+pSwsYdDt/j+egIk0KHyHMmXSgM =
1077
+ github.com/sei-protocol/sei-cosmos v0.2.63 h1:jalisZmV5+XVZ8mf+8hGvkVvkw44/O1m5LuOlBGZXmk =
1078
+ github.com/sei-protocol/sei-cosmos v0.2.63 /go.mod h1:retCl6F8SWQ8ookwdQXIGkK56AHSKNUN2X3u9nVzo7g =
1079
1079
github.com/sei-protocol/sei-iavl v0.1.7 h1:cUdHDBkxs0FF/kOt1qCVLm0K+Bqaw92/dbZSgn4kxiA =
1080
1080
github.com/sei-protocol/sei-iavl v0.1.7 /go.mod h1:7PfkEVT5dcoQE+s/9KWdoXJ8VVVP1QpYYPLdxlkSXFk =
1081
1081
github.com/sei-protocol/sei-ibc-go/v3 v3.2.0 h1:T8V75OEWKvYDraPZZKilprl7ZkahZYGo40crxNL4unc =
1082
1082
github.com/sei-protocol/sei-ibc-go/v3 v3.2.0 /go.mod h1:DrDYXJjWNwgv72cK1Il+BegtyGIDXcx+cnJwWGzve6o =
1083
- github.com/sei-protocol/sei-tendermint v0.2.27 h1:KNf+kzkj11VRONT7IW8AmbhQGt0Cw6jYnXyNal3uPfA =
1084
- github.com/sei-protocol/sei-tendermint v0.2.27 /go.mod h1:+BtDvAwTkE64BlxzpH9ZP7S6vUYT9wRXiZa/WW8/o4g =
1083
+ github.com/sei-protocol/sei-tendermint v0.2.28 h1:5PB1a/zu6H2iDbxIMnXgDtB4QwV5PZRikguX8gASLGI =
1084
+ github.com/sei-protocol/sei-tendermint v0.2.28 /go.mod h1:+BtDvAwTkE64BlxzpH9ZP7S6vUYT9wRXiZa/WW8/o4g =
1085
1085
github.com/sei-protocol/sei-tm-db v0.0.5 h1:3WONKdSXEqdZZeLuWYfK5hP37TJpfaUa13vAyAlvaQY =
1086
1086
github.com/sei-protocol/sei-tm-db v0.0.5 /go.mod h1:Cpa6rGyczgthq7/0pI31jys2Fw0Nfrc+/jKdP1prVqY =
1087
1087
github.com/sei-protocol/sei-wasmd v0.0.2 h1:I0FVTMSWWVVssBQtDgwcDAyDF+ZT2+RqT20ItTBYih8 =
You can’t perform that action at this time.
0 commit comments