Skip to content

Commit d747dee

Browse files
authored
2.0.39beta Release (#632)
1 parent 64eedc7 commit d747dee

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,18 @@ Ref: https://keepachangelog.com/en/1.0.0/
2828

2929
# Changelog
3030

31+
## 2.0.39beta - 2023-03-06
32+
* [#632](https://github.com/sei-protocol/sei-chain/pull/632) Bump Sei-tendermint to reduce log volume
33+
* [#631](https://github.com/sei-protocol/sei-chain/pull/631) Nondeterminism deadlock fixes
34+
* [#630](https://github.com/sei-protocol/sei-chain/pull/630) Mempool configs to avoid node slow down
35+
36+
## 2.0.38beta - 2023-03-04
37+
* [#623](https://github.com/sei-protocol/sei-chain/pull/623) [epoch] Add new epoch events by @udpatil in #623
38+
* [#624](https://github.com/sei-protocol/sei-chain/pull/624) [dex][mint] Add long messages for dex and mint by @udpatil in #624
39+
* [#588](https://github.com/sei-protocol/sei-chain/pull/588) Send deposit funds in message server instead of EndBlock by @codchen in #588
40+
* [#627](https://github.com/sei-protocol/sei-chain/pull/627) [oracle] Add slash window progress query by @udpatil in #627
41+
[label](x/oracle/README.md)* [#625](https://github.com/sei-protocol/sei-chain/pull/625) Update contract rent deposit logic + add query endpoint by @LCyson in #625
42+
3143
## 2.0.37beta - 2023-02-27
3244
### Features
3345
* [#621](https://github.com/sei-protocol/sei-chain/pull/621) Add success count to the oracle query

app/upgrades.go

+1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ var upgradesList = []string{
5454
"2.0.36beta",
5555
"2.0.37beta",
5656
"2.0.38beta",
57+
"2.0.39beta",
5758
}
5859

5960
func (app App) RegisterUpgradeHandlers() {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,6 @@ replace (
273273
github.com/cosmos/iavl => github.com/sei-protocol/sei-iavl v0.1.2
274274
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
275275
github.com/keybase/go-keychain => github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4
276-
github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.1.175
276+
github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.1.177
277277
google.golang.org/grpc => google.golang.org/grpc v1.33.2
278278
)

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1070,8 +1070,8 @@ github.com/sei-protocol/sei-cosmos v0.2.1 h1:u1yUGasR7iDMVb2VMDmsCWx6duQQwvuq6iT
10701070
github.com/sei-protocol/sei-cosmos v0.2.1/go.mod h1:LUhhplOtRXliV1x17gbOptKPy90xSK0Sxv8zmgsMvTY=
10711071
github.com/sei-protocol/sei-iavl v0.1.2 h1:jEYkZv83DbTRapJtkT5gBFa2uEBwD4udw8AiYx0gcsI=
10721072
github.com/sei-protocol/sei-iavl v0.1.2/go.mod h1:7PfkEVT5dcoQE+s/9KWdoXJ8VVVP1QpYYPLdxlkSXFk=
1073-
github.com/sei-protocol/sei-tendermint v0.1.175 h1:BVx/mqmpLfousMEzZ9ptziXEfNIGFFOOKXxQsMgMvRU=
1074-
github.com/sei-protocol/sei-tendermint v0.1.175/go.mod h1:+BtDvAwTkE64BlxzpH9ZP7S6vUYT9wRXiZa/WW8/o4g=
1073+
github.com/sei-protocol/sei-tendermint v0.1.177 h1:gn6/z82eGBBdyRgEyd8wpbB0C3/l1BhjzcsiCFoSrvo=
1074+
github.com/sei-protocol/sei-tendermint v0.1.177/go.mod h1:+BtDvAwTkE64BlxzpH9ZP7S6vUYT9wRXiZa/WW8/o4g=
10751075
github.com/sei-protocol/sei-tm-db v0.0.5 h1:3WONKdSXEqdZZeLuWYfK5hP37TJpfaUa13vAyAlvaQY=
10761076
github.com/sei-protocol/sei-tm-db v0.0.5/go.mod h1:Cpa6rGyczgthq7/0pI31jys2Fw0Nfrc+/jKdP1prVqY=
10771077
github.com/sei-protocol/sei-wasmd v0.0.1 h1:dRvdapc1sqWxhIB2+DKS5LfilFjOsaFwWkGkSWwQIow=

0 commit comments

Comments
 (0)