Skip to content

Commit 38418af

Browse files
philipsu522Kbhat1
andauthored
v6.0.0 release (#1914)
* v6.0.0 release * Disable Pruning during SC migration + Bump Sei-cosmos (#1917) * Disable Pruning during SC migration * Bump sei-cosmos * v6.0.0 release * Disable Pruning during SC migration + Bump Sei-cosmos (#1917) * Disable Pruning during SC migration * Bump sei-cosmos * Bump cosmos --------- Co-authored-by: Kartik Bhat <kartikbhatri@gmail.com>
1 parent 92325cc commit 38418af

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

CHANGELOG.md

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

2929
# Changelog
30+
## v6.0.0
31+
sei-chain
32+
* [#1905](https://github.com/sei-protocol/sei-chain/pull/1905) Use limited wasm gas meter
33+
* [#1889](https://github.com/sei-protocol/sei-chain/pull/1889) Fix amino registry for custom modules
34+
* [#1888](https://github.com/sei-protocol/sei-chain/pull/1888) Set EIP-1559 default values
35+
* [#1884](https://github.com/sei-protocol/sei-chain/pull/1884) Update gas tip cap param range
36+
* [#1878](https://github.com/sei-protocol/sei-chain/pull/1878) Add endpoint to estimate gas after simulating calls
37+
38+
sei-cosmos
39+
* [#547](https://github.com/sei-protocol/sei-cosmos/pull/547) Do not early return for validated tasks in synchronous mode
40+
* [#544](https://github.com/sei-protocol/sei-cosmos/pull/544) Only apply DeliverTx hooks if there is no error
41+
* [#538](https://github.com/sei-protocol/sei-cosmos/pull/538) Token allowlist feature
42+
43+
sei-tendermint
44+
* [#248](https://github.com/sei-protocol/sei-tendermint/pull/248) Improve Peer Score algorithm
45+
* [#245](https://github.com/sei-protocol/sei-tendermint/pull/245) Exclude unconditional peers when connection limit checking
46+
* [#244](https://github.com/sei-protocol/sei-tendermint/pull/244) Add new config to speed up block sync
47+
48+
sei-db
49+
* [#75](https://github.com/sei-protocol/sei-db/pull/75) Online archive node migration
50+
3051
## v5.9.0
3152
sei-chain
3253
* [#1867](https://github.com/sei-protocol/sei-chain/pull/1867) Add synthetic events in separate sei endpoints

app/upgrades.go

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ var upgradesList = []string{
111111
"v5.7.5",
112112
"v5.8.0",
113113
"v5.9.0",
114+
"v6.0.0",
114115
}
115116

116117
// if there is an override list, use that instead, for integration tests

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ require (
346346
replace (
347347
github.com/CosmWasm/wasmd => github.com/sei-protocol/sei-wasmd v0.2.4
348348
github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0
349-
github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.3.43
349+
github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.3.44
350350
github.com/cosmos/iavl => github.com/sei-protocol/sei-iavl v0.2.0
351351
github.com/cosmos/ibc-go/v3 => github.com/sei-protocol/sei-ibc-go/v3 v3.3.2
352352
github.com/ethereum/go-ethereum => github.com/sei-protocol/go-ethereum v1.13.5-sei-23

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1347,8 +1347,8 @@ github.com/sei-protocol/go-ethereum v1.13.5-sei-23 h1:rkgeOHC56QTco4mIyGd6cZHtlo
13471347
github.com/sei-protocol/go-ethereum v1.13.5-sei-23/go.mod h1:kcRZmuzRn1lVejiFNTz4l4W7imnpq1bDAnuKS/RyhbQ=
13481348
github.com/sei-protocol/goutils v0.0.2 h1:Bfa7Sv+4CVLNM20QcpvGb81B8C5HkQC/kW1CQpIbXDA=
13491349
github.com/sei-protocol/goutils v0.0.2/go.mod h1:iYE2DuJfEnM+APPehr2gOUXfuLuPsVxorcDO+Tzq9q8=
1350-
github.com/sei-protocol/sei-cosmos v0.3.43 h1:H3F6wHze6Td0bdrOgV6uGzbMV9H699AA5w2sVgscKEA=
1351-
github.com/sei-protocol/sei-cosmos v0.3.43/go.mod h1:ZwWxF/69WlcLEn4BzVjPPToTFkE2sjPanU8PNNyKoOk=
1350+
github.com/sei-protocol/sei-cosmos v0.3.44 h1:7wLuJguQBhQ1ljU92lEDrZDLcNt+JbUcX7r1Y7V1qws=
1351+
github.com/sei-protocol/sei-cosmos v0.3.44/go.mod h1:ZwWxF/69WlcLEn4BzVjPPToTFkE2sjPanU8PNNyKoOk=
13521352
github.com/sei-protocol/sei-db v0.0.45 h1:95ygzGFMyvaGwEUmzlKi8MxwXfbluoNzbaIjy9zOG6o=
13531353
github.com/sei-protocol/sei-db v0.0.45/go.mod h1:m5g7p0QeAS3dNJHIl28zQpzOgxQmvYqPb7t4hwgIOCA=
13541354
github.com/sei-protocol/sei-iavl v0.2.0 h1:OisPjXiDT+oe+aeckzDEFgkZCYuUjHgs/PP8DPicN+I=

0 commit comments

Comments
 (0)