Files
docker-machine/version/version.go
David Gageot 279fd7ca3f Bumping version to 0.6.0-dev
Signed-off-by: David Gageot <david@gageot.net>
2016-02-03 12:03:45 -08:00

17 lines
341 B
Go

package version
import "fmt"
var (
// Version should be updated by hand at each release
Version = "0.6.0-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)
}