From 9e491558c37824258386884c1434f59284c91ccd Mon Sep 17 00:00:00 2001 From: Geofrey Ernest Date: Sun, 27 Oct 2024 17:46:48 +0300 Subject: [PATCH] chore: bump version --- internal/version/VERSION | 2 +- internal/version/bump/main.go | 2 ++ k8s/Chart.yaml | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) 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"