feat: version prints semver first

This commit is contained in:
Luke K 2020-07-28 14:11:21 +00:00
parent 7c253298ea
commit dd2e70969f
No known key found for this signature in database
GPG Key ID: 4896F75BAF2E1966
1 changed files with 1 additions and 1 deletions

View File

@ -42,5 +42,5 @@ func verboseVersion() string {
if vers == "" { // not statically populatd
return "v0.0.0-source"
}
return fmt.Sprintf("%s-%s-%s", date, vers, hash)
return fmt.Sprintf("%s-%s-%s", vers, date, hash)
}