File tree 4 files changed +21
-3
lines changed
4 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,23 @@ Ref: https://keepachangelog.com/en/1.0.0/
27
27
-->
28
28
29
29
# 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
+
30
47
## 3.0.0
31
48
sei-chain:
32
49
* [ #777 ] (https://github.com/sei-protocol/sei-chain/pull/777 ) Parallelize Sudo Deposit
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ var upgradesList = []string{
50
50
"2.0.48beta" ,
51
51
// 3.x.x versions have a revamped and optimized dex changes. We also change naming conventions to remove "beta"
52
52
"3.0.0" ,
53
+ "3.0.1" ,
53
54
}
54
55
55
56
func (app App ) RegisterUpgradeHandlers () {
Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ replace (
273
273
github.com/cosmos/iavl => github.com/sei-protocol/sei-iavl v0.1.4
274
274
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
275
275
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
277
277
github.com/tendermint/tm-db => github.com/sei-protocol/tm-db v0.0.4
278
278
google.golang.org/grpc => google.golang.org/grpc v1.33.2
279
279
)
Original file line number Diff line number Diff line change @@ -1071,8 +1071,8 @@ github.com/sei-protocol/sei-cosmos v0.2.35 h1:VfbkGXP2GJBi+/7Eu1pbV4ea+g1KzjatrA
1071
1071
github.com/sei-protocol/sei-cosmos v0.2.35 /go.mod h1:eV7NmvcXn1D6A3EDvOFZ894tqm+/JW4CWUiohnamjfM =
1072
1072
github.com/sei-protocol/sei-iavl v0.1.4 h1:lT5doPDTBq/UlbofQbM5iS01FbTSJttmA22+d0PJj5o =
1073
1073
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 =
1076
1076
github.com/sei-protocol/sei-tm-db v0.0.5 h1:3WONKdSXEqdZZeLuWYfK5hP37TJpfaUa13vAyAlvaQY =
1077
1077
github.com/sei-protocol/sei-tm-db v0.0.5 /go.mod h1:Cpa6rGyczgthq7/0pI31jys2Fw0Nfrc+/jKdP1prVqY =
1078
1078
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