packer-cn/version/version.go

32 lines
774 B
Go
Raw Normal View History

package version
import (
"bytes"
"fmt"
)
2014-10-27 23:51:34 -04:00
// The git commit that was compiled. This will be filled in by the compiler.
var GitCommit string
// The main version number that is being run at the moment.
2016-11-15 17:16:06 -05:00
const Version = "0.12.1"
2014-10-27 23:51:34 -04:00
// A pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release
// such as "dev" (in development), "beta", "rc1", etc.
2016-12-15 16:25:32 -05:00
const VersionPrerelease = ""
func FormattedVersion() string {
var versionString bytes.Buffer
fmt.Fprintf(&versionString, "%s", Version)
if VersionPrerelease != "" {
fmt.Fprintf(&versionString, ".%s", VersionPrerelease)
if GitCommit != "" {
fmt.Fprintf(&versionString, " (%s)", GitCommit)
}
}
return versionString.String()
}