From c2e0cf206238d3866c790c9f9f403f660bac2112 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alby=20Hern=C3=A1ndez?= Date: Mon, 26 Aug 2024 16:53:28 +0100 Subject: [PATCH] fix: Prepare to release v0.2.1 --- charts/hitman/Chart.yaml | 4 ++-- internal/cmd/version/version.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/hitman/Chart.yaml b/charts/hitman/Chart.yaml index dd7ead6..2e3efe0 100644 --- a/charts/hitman/Chart.yaml +++ b/charts/hitman/Chart.yaml @@ -5,8 +5,8 @@ type: application description: >- A Helm chart for Hitman, a daemon for Kubernetes to kill target resources under user-defined templated conditions -version: 0.2.0 # chart version -appVersion: "0.2.0" # application version +version: 0.2.1 # chart version +appVersion: "0.2.1" # application version kubeVersion: ">=1.22.0-0" # kubernetes version home: https://github.com/achetronic/hitman sources: diff --git a/internal/cmd/version/version.go b/internal/cmd/version/version.go index 24d0662..18f7ad4 100644 --- a/internal/cmd/version/version.go +++ b/internal/cmd/version/version.go @@ -27,5 +27,5 @@ func NewCommand() *cobra.Command { } func RunCommand(cmd *cobra.Command, args []string) { - fmt.Print("version: 0.1.0\n") + fmt.Print("version: 0.2.1\n") }