README
apiversion
A Go library for parsing and comparing versions like v1alpha1
v1beta1
, v1rc1
and v1
commonly found in Kubernetes.
Documentation
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Compare ¶
Compare returns an integer comparing two version strings. The result will be 0 if x==y, -1 if x < y, and +1 if x > y. An error is returned, if version string can't be parsed.
func MustCompare ¶
MustCompare returns an integer comparing two version strings. The result will be 0 if x==y, -1 if x < y, and +1 if x > y.
Types ¶
type InvalidVersion ¶
type InvalidVersion struct {
// contains filtered or unexported fields
}
func (InvalidVersion) Error ¶
func (e InvalidVersion) Error() string