Skip to content

Commit 81b8af7

Browse files
authored
3.0.1 release (#796)
* 3.0.1 release * Add noversinoing * Update changelog * Bump tm
1 parent 0131d99 commit 81b8af7

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

CHANGELOG.md

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

2929
# Changelog
30+
## 3.0.1
31+
sei-chain:
32+
* [#797] (https://github.com/sei-protocol/sei-chain/pull/797) Don't charge gas for loading contract dependencies
33+
* [#792] (https://github.com/sei-protocol/sei-chain/pull/792) Reset block gas meter if concurrent processing fails
34+
* [#791] (https://github.com/sei-protocol/sei-chain/pull/791) Disable skipFastStorageUpgrade to make iavl dump faster
35+
* [#790] (https://github.com/sei-protocol/sei-chain/pull/790) Disable non-prioritized tx concurrency
36+
* [#789] (https://github.com/sei-protocol/sei-chain/pull/789) Adds appropriate READ access for dex contract in antehandler
37+
* [#788] (https://github.com/sei-protocol/sei-chain/pull/788) Clear dex memstate cache when falling back to sequential processing
38+
* [#786] (https://github.com/sei-protocol/sei-chain/pull/786) Add NoVersioning to seid command
39+
* [#781] (https://github.com/sei-protocol/sei-chain/pull/781) Add order limit for price level and pair limit for contracts
40+
41+
tm-db:
42+
* [#2] (https://github.com/sei-protocol/tm-db/pull/2) Load items eagerly to memdb_iterator to avoid deadlock
43+
44+
sei-tendermint:
45+
* [#137] (https://github.com/sei-protocol/sei-tendermint/pull/137) New endpoint to expose lag
46+
3047
## 3.0.0
3148
sei-chain:
3249
* [#777] (https://github.com/sei-protocol/sei-chain/pull/777) Parallelize Sudo Deposit

app/upgrades.go

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ var upgradesList = []string{
5050
"2.0.48beta",
5151
// 3.x.x versions have a revamped and optimized dex changes. We also change naming conventions to remove "beta"
5252
"3.0.0",
53+
"3.0.1",
5354
}
5455

5556
func (app App) RegisterUpgradeHandlers() {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ replace (
273273
github.com/cosmos/iavl => github.com/sei-protocol/sei-iavl v0.1.4
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.2.17
276+
github.com/tendermint/tendermint => github.com/sei-protocol/sei-tendermint v0.2.18
277277
github.com/tendermint/tm-db => github.com/sei-protocol/tm-db v0.0.4
278278
google.golang.org/grpc => google.golang.org/grpc v1.33.2
279279
)

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1071,8 +1071,8 @@ github.com/sei-protocol/sei-cosmos v0.2.35 h1:VfbkGXP2GJBi+/7Eu1pbV4ea+g1KzjatrA
10711071
github.com/sei-protocol/sei-cosmos v0.2.35/go.mod h1:eV7NmvcXn1D6A3EDvOFZ894tqm+/JW4CWUiohnamjfM=
10721072
github.com/sei-protocol/sei-iavl v0.1.4 h1:lT5doPDTBq/UlbofQbM5iS01FbTSJttmA22+d0PJj5o=
10731073
github.com/sei-protocol/sei-iavl v0.1.4/go.mod h1:7PfkEVT5dcoQE+s/9KWdoXJ8VVVP1QpYYPLdxlkSXFk=
1074-
github.com/sei-protocol/sei-tendermint v0.2.17 h1:TwOVyF8F+Of2G8UEt0ShHDFQcFNmbGy4/c5Uui5UHqg=
1075-
github.com/sei-protocol/sei-tendermint v0.2.17/go.mod h1:+BtDvAwTkE64BlxzpH9ZP7S6vUYT9wRXiZa/WW8/o4g=
1074+
github.com/sei-protocol/sei-tendermint v0.2.18 h1:ZgU2OVfrA65j9ngW0o7dLD4+SXq9NhORtbYuaBEwT3o=
1075+
github.com/sei-protocol/sei-tendermint v0.2.18/go.mod h1:+BtDvAwTkE64BlxzpH9ZP7S6vUYT9wRXiZa/WW8/o4g=
10761076
github.com/sei-protocol/sei-tm-db v0.0.5 h1:3WONKdSXEqdZZeLuWYfK5hP37TJpfaUa13vAyAlvaQY=
10771077
github.com/sei-protocol/sei-tm-db v0.0.5/go.mod h1:Cpa6rGyczgthq7/0pI31jys2Fw0Nfrc+/jKdP1prVqY=
10781078
github.com/sei-protocol/sei-wasmd v0.0.2 h1:I0FVTMSWWVVssBQtDgwcDAyDF+ZT2+RqT20ItTBYih8=

0 commit comments

Comments
 (0)