github.com/darkowlzz/containerd@v0.2.5/version.go (about)

     1  package containerd
     2  
     3  import "fmt"
     4  
     5  // VersionMajor holds the release major number
     6  const VersionMajor = 0
     7  
     8  // VersionMinor holds the release minor number
     9  const VersionMinor = 2
    10  
    11  // VersionPatch holds the release patch number
    12  const VersionPatch = 4
    13  
    14  // Version holds the combination of major minor and patch as a string
    15  // of format Major.Minor.Patch
    16  var Version = fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionPatch)
    17  
    18  // GitCommit is filled with the Git revision being used to build the
    19  // program at linking time
    20  var GitCommit = ""