1 package compatibility 2 3 const ( 4 // Latest is the latest tag. 5 Latest = "latest" 6 // Equal is an operation that compares the equality of two versions. 7 Equal Operation = iota 8 // LessThan is an operation that compares one version is less than the other. 9 LessThan 10 // GreaterThan is an operation that compares one version is greater than the other. 11 GreaterThan 12 // LessThanOrEqual is an operation that compares one version is less than or equal to the other. 13 LessThanOrEqual 14 // GreaterThanOrEqual is an operation that compares one version is greater than or equal to the other. 15 GreaterThanOrEqual 16 ) 17