package compatibility const ( // Latest is the latest tag. Latest = "latest" // Equal is an operation that compares the equality of two versions. Equal Operation = iota // LessThan is an operation that compares one version is less than the other. LessThan // GreaterThan is an operation that compares one version is greater than the other. GreaterThan // LessThanOrEqual is an operation that compares one version is less than or equal to the other. LessThanOrEqual // GreaterThanOrEqual is an operation that compares one version is greater than or equal to the other. GreaterThanOrEqual )