diff --git a/CHANGELOG.md b/CHANGELOG.md index 39546a731..99ead355e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,17 @@ Ref: https://keepachangelog.com/en/1.0.0/ --> # Changelog +## v3.7.0 +sei-chain: +* [#1283](https://github.com/sei-protocol/sei-chain/pull/1283) Update synchronous execution to set tx indices properly +* [#1325](https://github.com/sei-protocol/sei-chain/pull/1325) Oracle price feeder ignore error for vote already exist + +sei-cosmos: +* [#401](https://github.com/sei-protocol/sei-cosmos/pull/401) Ensure Panic Recovery in Prepare & Process Handlers +* [#404](https://github.com/sei-protocol/sei-cosmos/pull/404) No longer disable dynamic dep generation +* [#411](https://github.com/sei-protocol/sei-cosmos/pull/411) Fix concurrent map access for seidb +* [#424](https://github.com/sei-protocol/sei-cosmos/pull/424) Fix SS apply changeset version off by 1 + ## v3.6.1 sei-chain: * [#1204](https://github.com/sei-protocol/sei-chain/pull/1204) Cleanup removed oracle feeds diff --git a/app/upgrades.go b/app/upgrades.go index 745eea837..cf289cf87 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -67,6 +67,7 @@ var upgradesList = []string{ "v3.3.0", "v3.5.0", "v3.6.1", + "v3.7.0", } // if there is an override list, use that instead, for integration tests diff --git a/go.mod b/go.mod index 033b11720..59d57fa15 100644 --- a/go.mod +++ b/go.mod @@ -307,7 +307,7 @@ require ( replace ( github.com/CosmWasm/wasmd => github.com/sei-protocol/sei-wasmd v0.0.4 github.com/confio/ics23/go => github.com/cosmos/cosmos-sdk/ics23/go v0.8.0 - github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.2.73-hotfix-2 + github.com/cosmos/cosmos-sdk => github.com/sei-protocol/sei-cosmos v0.2.74 github.com/cosmos/iavl => github.com/sei-protocol/sei-iavl v0.1.9 github.com/cosmos/ibc-go/v3 => github.com/sei-protocol/sei-ibc-go/v3 v3.3.0 github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 diff --git a/go.sum b/go.sum index ab49f8ef2..b39f2c788 100644 --- a/go.sum +++ b/go.sum @@ -1170,8 +1170,8 @@ github.com/securego/gosec/v2 v2.11.0/go.mod h1:SX8bptShuG8reGC0XS09+a4H2BoWSJi+f github.com/segmentio/fasthash v1.0.3/go.mod h1:waKX8l2N8yckOgmSsXJi7x1ZfdKZ4x7KRMzBtS3oedY= github.com/sei-protocol/goutils v0.0.2 h1:Bfa7Sv+4CVLNM20QcpvGb81B8C5HkQC/kW1CQpIbXDA= github.com/sei-protocol/goutils v0.0.2/go.mod h1:iYE2DuJfEnM+APPehr2gOUXfuLuPsVxorcDO+Tzq9q8= -github.com/sei-protocol/sei-cosmos v0.2.73-hotfix-2 h1:3AipLPlcAvQyrLCNGM53+EvstzOwhQ2iE4ARyKLsIIw= -github.com/sei-protocol/sei-cosmos v0.2.73-hotfix-2/go.mod h1:CykNPmj90YkwBorkvnc05u9k9MBNDHC3h4CIdmq3R98= +github.com/sei-protocol/sei-cosmos v0.2.74 h1:UAXI4+aCO8nUJ1cAqRBZZbnIjjzfZLJCf94zOre0ZCA= +github.com/sei-protocol/sei-cosmos v0.2.74/go.mod h1:CykNPmj90YkwBorkvnc05u9k9MBNDHC3h4CIdmq3R98= github.com/sei-protocol/sei-db v0.0.30 h1:dlAOTE+7nByzzAD9cb1/DxaHWbxXOHFh58a2ImvcoYs= github.com/sei-protocol/sei-db v0.0.30/go.mod h1:F/ZKZA8HJPcUzSZPA8yt6pfwlGriJ4RDR4eHKSGLStI= github.com/sei-protocol/sei-iavl v0.1.9 h1:y4mVYftxLNRs6533zl7N0/Ch+CzRQc04JDfHolIxgBE= diff --git a/x/tokenfactory/types/events.go b/x/tokenfactory/types/events.go index acc331c72..bae168d95 100644 --- a/x/tokenfactory/types/events.go +++ b/x/tokenfactory/types/events.go @@ -2,6 +2,7 @@ package types // event types +// nolint const ( AttributeAmount = "amount" AttributeCreator = "creator"