Skip to content

Commit de428b1

Browse files
authored
Release version v3.7.0 (#1357)
* Release v3.7.0 * Add changelog * Fix lint * Fix lint
1 parent ef3554f commit de428b1

File tree

5 files changed

+16
-3
lines changed

5 files changed

+16
-3
lines changed

CHANGELOG.md

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

2929
# Changelog
30+
## v3.7.0
31+
sei-chain:
32+
* [#1283](https://github.com/sei-protocol/sei-chain/pull/1283) Update synchronous execution to set tx indices properly
33+
* [#1325](https://github.com/sei-protocol/sei-chain/pull/1325) Oracle price feeder ignore error for vote already exist
34+
35+
sei-cosmos:
36+
* [#401](https://github.com/sei-protocol/sei-cosmos/pull/401) Ensure Panic Recovery in Prepare & Process Handlers
37+
* [#404](https://github.com/sei-protocol/sei-cosmos/pull/404) No longer disable dynamic dep generation
38+
* [#411](https://github.com/sei-protocol/sei-cosmos/pull/411) Fix concurrent map access for seidb
39+
* [#424](https://github.com/sei-protocol/sei-cosmos/pull/424) Fix SS apply changeset version off by 1
40+
3041
## v3.6.1
3142
sei-chain:
3243
* [#1204](https://github.com/sei-protocol/sei-chain/pull/1204) Cleanup removed oracle feeds

app/upgrades.go

+1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ var upgradesList = []string{
6767
"v3.3.0",
6868
"v3.5.0",
6969
"v3.6.1",
70+
"v3.7.0",
7071
}
7172

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

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ require (
307307
replace (
308308
github.com/CosmWasm/wasmd => github.com/sei-protocol/sei-wasmd v0.0.4
309309
github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0
310-
github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.2.73-hotfix-2
310+
github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.2.74
311311
github.com/cosmos/iavl => github.com/sei-protocol/sei-iavl v0.1.9
312312
github.com/cosmos/ibc-go/v3 => github.com/sei-protocol/sei-ibc-go/v3 v3.3.0
313313
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1170,8 +1170,8 @@ github.com/securego/gosec/v2 v2.11.0/go.mod h1:SX8bptShuG8reGC0XS09+a4H2BoWSJi+f
11701170
github.com/segmentio/fasthash v1.0.3/go.mod h1:waKX8l2N8yckOgmSsXJi7x1ZfdKZ4x7KRMzBtS3oedY=
11711171
github.com/sei-protocol/goutils v0.0.2 h1:Bfa7Sv+4CVLNM20QcpvGb81B8C5HkQC/kW1CQpIbXDA=
11721172
github.com/sei-protocol/goutils v0.0.2/go.mod h1:iYE2DuJfEnM+APPehr2gOUXfuLuPsVxorcDO+Tzq9q8=
1173-
github.com/sei-protocol/sei-cosmos v0.2.73-hotfix-2 h1:3AipLPlcAvQyrLCNGM53+EvstzOwhQ2iE4ARyKLsIIw=
1174-
github.com/sei-protocol/sei-cosmos v0.2.73-hotfix-2/go.mod h1:CykNPmj90YkwBorkvnc05u9k9MBNDHC3h4CIdmq3R98=
1173+
github.com/sei-protocol/sei-cosmos v0.2.74 h1:UAXI4+aCO8nUJ1cAqRBZZbnIjjzfZLJCf94zOre0ZCA=
1174+
github.com/sei-protocol/sei-cosmos v0.2.74/go.mod h1:CykNPmj90YkwBorkvnc05u9k9MBNDHC3h4CIdmq3R98=
11751175
github.com/sei-protocol/sei-db v0.0.30 h1:dlAOTE+7nByzzAD9cb1/DxaHWbxXOHFh58a2ImvcoYs=
11761176
github.com/sei-protocol/sei-db v0.0.30/go.mod h1:F/ZKZA8HJPcUzSZPA8yt6pfwlGriJ4RDR4eHKSGLStI=
11771177
github.com/sei-protocol/sei-iavl v0.1.9 h1:y4mVYftxLNRs6533zl7N0/Ch+CzRQc04JDfHolIxgBE=

x/tokenfactory/types/events.go

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
package types
33

44
// event types
5+
// nolint
56
const (
67
AttributeAmount = "amount"
78
AttributeCreator = "creator"

0 commit comments

Comments
 (0)