Files
docker-machine/version/version.go
Nathan LeClaire 751cdcea27 Add changes for 0.7.0-rc1
Signed-off-by: Nathan LeClaire <nathan.leclaire@gmail.com>
2016-03-24 12:47:06 -07:00

17 lines
341 B
Go

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