diff --git a/app/app.go b/app/app.go index dc8c88d30..94219d4bb 100644 --- a/app/app.go +++ b/app/app.go @@ -136,7 +136,7 @@ import ( const ( AccountAddressPrefix = "stride" Name = "stride" - Version = "2.0.3" + Version = "3.0.0" ) // this line is used by starport scaffolding # stargate/wasm/app/enabledProposals diff --git a/app/upgrades/README.md b/app/upgrades/README.md index c7f0addff..8ab3426ef 100644 --- a/app/upgrades/README.md +++ b/app/upgrades/README.md @@ -2,13 +2,16 @@ ## Increment Version ```go -// cmd/strided/main.go +// cmd/strided/config/config.go ... version.Version = "{newVersion}" // app/app.go ... Version = "{newVersion}" + +// go.mod (will need to update all imports after) +module github.com/Stride-Labs/stride/{newVersion} ``` ## Create Upgrade Handler diff --git a/cmd/strided/config/config.go b/cmd/strided/config/config.go index bcacc8542..e10f06ec9 100644 --- a/cmd/strided/config/config.go +++ b/cmd/strided/config/config.go @@ -40,7 +40,7 @@ func SetupConfig() { version.AppName = "stride" version.Name = "strided" - version.Version = "v2.0.3" + version.Version = "v3.0.0" } // SetBech32Prefixes sets the global prefixes to be used when serializing addresses and public keys to Bech32 strings.