1
0
mirror of https://github.com/rancher/os.git synced 2025-07-05 19:16:13 +00:00
os/vendor/github.com/docker/containerd/version.go
Darren Shepherd a14846152b Update vendor
2016-05-31 18:14:32 -07:00

12 lines
204 B
Go

package containerd
import "fmt"
const VersionMajor = 0
const VersionMinor = 2
const VersionPatch = 0
var Version = fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionPatch)
var GitCommit = ""