2019-06-21 06:01:02 +00:00
|
|
|
package version
|
|
|
|
|
|
|
|
var (
|
2020-10-10 22:13:09 +00:00
|
|
|
commit = "0000000"
|
|
|
|
version = "0.0.0-pre0+0000000"
|
|
|
|
date = "0000-00-00T00:00:00+0000"
|
2019-06-21 06:01:02 +00:00
|
|
|
)
|
2020-10-12 20:42:55 +00:00
|
|
|
|
|
|
|
// Commit returns the git commit reference
|
|
|
|
func Commit() string {
|
|
|
|
return commit
|
|
|
|
}
|
|
|
|
|
|
|
|
// Version returns the git version, without the leading 'v'
|
|
|
|
func Version() string {
|
|
|
|
return version
|
|
|
|
}
|
|
|
|
|
|
|
|
// Date returns the ISO-formatted date string
|
|
|
|
func Date() string {
|
|
|
|
return date
|
|
|
|
}
|