tweak release tagging so it is not based on number of commits

This commit is contained in:
Benson Wong
2024-12-14 15:46:10 -08:00
parent 27302c0c02
commit d6ca535939
2 changed files with 9 additions and 9 deletions

View File

@@ -22,7 +22,7 @@ func main() {
flag.Parse() // Parse the command-line flags
if *showVersion {
fmt.Printf("version: v%s (%s), built at %s\n", version, commit, date)
fmt.Printf("version: %s (%s), built at %s\n", version, commit, date)
os.Exit(0)
}