mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-11 17:12:51 +00:00
18 lines
202 B
Go
18 lines
202 B
Go
package semver
|
|
|
|
type SvBump int
|
|
|
|
const (
|
|
Patch SvBump = iota
|
|
Minor
|
|
Major
|
|
)
|
|
|
|
func (b SvBump) String() string {
|
|
return map[SvBump]string{
|
|
Patch: "Patch",
|
|
Minor: "Minor",
|
|
Major: "Major",
|
|
}[b]
|
|
}
|