2015-12-02 22:41:49 +00:00
|
|
|
package containerd
|
|
|
|
|
2016-05-09 18:38:28 +00:00
|
|
|
import "fmt"
|
|
|
|
|
2016-06-03 22:00:49 +00:00
|
|
|
// VersionMajor holds the release major number
|
2016-05-09 18:38:28 +00:00
|
|
|
const VersionMajor = 0
|
2016-06-03 22:00:49 +00:00
|
|
|
|
|
|
|
// VersionMinor holds the release minor number
|
2016-05-09 18:38:28 +00:00
|
|
|
const VersionMinor = 2
|
2016-06-03 22:00:49 +00:00
|
|
|
|
|
|
|
// VersionPatch holds the release patch number
|
2016-08-10 15:59:47 +00:00
|
|
|
const VersionPatch = 3
|
2016-05-09 18:38:28 +00:00
|
|
|
|
2016-06-03 22:00:49 +00:00
|
|
|
// Version holds the combination of major minor and patch as a string
|
|
|
|
// of format Major.Minor.Patch
|
2016-05-09 18:38:28 +00:00
|
|
|
var Version = fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionPatch)
|
2016-03-18 22:29:22 +00:00
|
|
|
|
2016-06-03 22:00:49 +00:00
|
|
|
// GitCommit is filled with the Git revision being used to build the
|
|
|
|
// program at linking time
|
2016-03-18 22:29:22 +00:00
|
|
|
var GitCommit = ""
|