containerd/version.go
Stephen J Day 49ce56467e containerkit: change package name of root package
Signed-off-by: Stephen J Day <stephen.day@docker.com>
2016-09-26 18:16:00 -07:00

20 lines
546 B
Go

package containerkit
import "fmt"
// VersionMajor holds the release major number
const VersionMajor = 2
// VersionMinor holds the release minor number
const VersionMinor = 0
// VersionPatch holds the release patch number
const VersionPatch = 0
// Version holds the combination of major minor and patch as a string
// of format Major.Minor.Patch
var Version = fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionPatch)
// GitCommit is filled with the Git revision being used to build the
// program at linking time
var GitCommit = ""