1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-06-05 17:41:20 +00:00

21 lines
353 B
Go
Raw Normal View History

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