tendermint/version/version.go

20 lines
295 B
Go
Raw Normal View History

2016-01-20 13:25:26 -08:00
package version
const Maj = "0"
2017-09-22 08:44:57 -07:00
const Min = "11"
2017-10-10 15:47:28 -07:00
const Fix = "1"
2016-01-20 13:25:26 -08:00
2017-05-09 02:37:59 -07:00
var (
// The full version string
2017-10-09 14:18:33 -07:00
Version = "0.11.1"
2017-05-09 02:37:59 -07:00
// GitCommit is set with --ldflags "-X main.gitCommit=$(git rev-parse HEAD)"
GitCommit string
)
func init() {
if GitCommit != "" {
Version += "-" + GitCommit[:8]
}
}