diff --git a/internal/version/VERSION b/internal/version/VERSION index 74a63a22..05f629f1 100644 --- a/internal/version/VERSION +++ b/internal/version/VERSION @@ -1 +1 @@ -v1.5.2 \ No newline at end of file +v1.6.0 \ No newline at end of file diff --git a/internal/version/bump/main.go b/internal/version/bump/main.go index 7b416fe0..64b8f995 100644 --- a/internal/version/bump/main.go +++ b/internal/version/bump/main.go @@ -18,8 +18,10 @@ func main() { switch flag.Arg(0) { case "major": v.major++ + v.minor = 0 case "minor": v.minor++ + v.patch = 0 case "patch": v.patch++ } diff --git a/k8s/Chart.yaml b/k8s/Chart.yaml index a4f89ec3..88230017 100644 --- a/k8s/Chart.yaml +++ b/k8s/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: v2 name: vince description: Cloud-Native web analytics for everyone type: application -version: 1.5.2 -appVersion: "v1.5.2" +version: 1.6.0 +appVersion: "v1.6.0"