Files
docker-machine/version/version.go
Nathan LeClaire 552967fc00 Bump version to 0.5.5-dev
Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
2015-12-16 15:38:09 -08:00

17 lines
341 B
Go

package version
import "fmt"
var (
// Version should be updated by hand at each release
Version = "0.5.5-dev"
// GitCommit will be overwritten automatically by the build system
GitCommit = "HEAD"
)
// FullVersion formats the version to be printed
func FullVersion() string {
return fmt.Sprintf("%s, build %s", Version, GitCommit)
}