Skip to content

Commit 4b007ed

Browse files
committed
3.0.5 release
1 parent e112db1 commit 4b007ed

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,16 @@ Ref: https://keepachangelog.com/en/1.0.0/
2727
-->
2828

2929
# Changelog
30+
### 3.0.5
31+
sei-chain:
32+
* [#878] (https://github.com/sei-protocol/sei-chain/pull/878) Fix denom key collision
33+
34+
sei-tendermint:
35+
* [#149] (https://github.com/sei-protocol/sei-tendermint/pull/149) Fix condition for tx key dissemination
36+
37+
sei-iavl:
38+
* [#32] (https://github.com/sei-protocol/sei-iavl/pull/32) Separate orphan storage
39+
3040
## 3.0.4
3141
sei-chain:
3242
* [#874] (https://github.com/sei-protocol/sei-chain/pull/874) Charge rent after failed Sudo call

app/upgrades.go

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ var upgradesList = []string{
5454
"3.0.2",
5555
"3.0.3",
5656
"3.0.4",
57+
"3.0.5",
5758
}
5859

5960
func (app App) RegisterUpgradeHandlers() {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ replace (
277277
github.com/cosmos/ibc-go/v3 => github.com/sei-protocol/sei-ibc-go/v3 v3.1.0
278278
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
279279
github.com/keybase/go-keychain => github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4
280-
github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.2.23
280+
github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.2.24
281281
github.com/tendermint/tm-db => github.com/sei-protocol/tm-db v0.0.4
282282
google.golang.org/grpc => google.golang.org/grpc v1.33.2
283283
)

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1078,8 +1078,8 @@ github.com/sei-protocol/sei-iavl v0.1.7 h1:cUdHDBkxs0FF/kOt1qCVLm0K+Bqaw92/dbZSg
10781078
github.com/sei-protocol/sei-iavl v0.1.7/go.mod h1:7PfkEVT5dcoQE+s/9KWdoXJ8VVVP1QpYYPLdxlkSXFk=
10791079
github.com/sei-protocol/sei-ibc-go/v3 v3.1.0 h1:rFHk2R/3vbG9iNr7cYtVclW/UyEDSRFjNVPz60zZswU=
10801080
github.com/sei-protocol/sei-ibc-go/v3 v3.1.0/go.mod h1:Mb+1NXiPOLd+CPFlOC6BKeAUaxXlhuWenMmRiUiSmwY=
1081-
github.com/sei-protocol/sei-tendermint v0.2.23 h1:5AZ+3uGP78BOem6Dfbdxli/e3aVDo4HjRxpbuPpsyqQ=
1082-
github.com/sei-protocol/sei-tendermint v0.2.23/go.mod h1:+BtDvAwTkE64BlxzpH9ZP7S6vUYT9wRXiZa/WW8/o4g=
1081+
github.com/sei-protocol/sei-tendermint v0.2.24 h1:0YB9dyZNrnXxt2SyLhfiz/R3HOaQB664nbGbhAa2ZPg=
1082+
github.com/sei-protocol/sei-tendermint v0.2.24/go.mod h1:+BtDvAwTkE64BlxzpH9ZP7S6vUYT9wRXiZa/WW8/o4g=
10831083
github.com/sei-protocol/sei-tm-db v0.0.5 h1:3WONKdSXEqdZZeLuWYfK5hP37TJpfaUa13vAyAlvaQY=
10841084
github.com/sei-protocol/sei-tm-db v0.0.5/go.mod h1:Cpa6rGyczgthq7/0pI31jys2Fw0Nfrc+/jKdP1prVqY=
10851085
github.com/sei-protocol/sei-wasmd v0.0.2 h1:I0FVTMSWWVVssBQtDgwcDAyDF+ZT2+RqT20ItTBYih8=

0 commit comments

Comments
 (0)