Skip to content

Commit

Permalink
Incremented Stride to version v3.0.0 (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
sampocs authored Nov 18, 2022
1 parent e747ac7 commit 78fd819
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 4 additions & 1 deletion app/upgrades/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cmd/strided/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 78fd819

Please sign in to comment.