tendermint/version/version.go

21 lines
353 B
Go
Raw Normal View History

2016-01-20 13:25:26 -08:00
package version
const Maj = "0"
2018-03-27 00:07:29 -07:00
const Min = "17"
2018-03-27 08:20:09 -07:00
const Fix = "1"
2016-01-20 13:25:26 -08:00
2017-05-09 02:37:59 -07:00
var (
// Version is the current version of Tendermint
// Must be a string because scripts like dist.sh read this file.
2018-03-27 08:20:09 -07:00
Version = "0.17.1"
2017-05-09 02:37:59 -07:00
// GitCommit is the current HEAD set using ldflags.
2017-05-09 02:37:59 -07:00
GitCommit string
)
func init() {
if GitCommit != "" {
Version += "-" + GitCommit
2017-05-09 02:37:59 -07:00
}
}