mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-06-11 17:12:51 +00:00
21 lines
284 B
Go
21 lines
284 B
Go
// Copyright 2022 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
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]
|
|
}
|