tendermint/version/version.go

20 lines
295 B
Go
Raw Normal View History

2016-01-20 16:25:26 -05:00
package version
const Maj = "0"
2017-10-26 15:56:48 -04:00
const Min = "12"
const Fix = "0"
2016-01-20 16:25:26 -05:00
2017-05-09 11:37:59 +02:00
var (
// The full version string
2017-10-26 15:56:48 -04:00
Version = "0.12.0"
2017-05-09 11:37:59 +02:00
// GitCommit is set with --ldflags "-X main.gitCommit=$(git rev-parse HEAD)"
GitCommit string
)
func init() {
if GitCommit != "" {
Version += "-" + GitCommit[:8]
}
}