From 0c29dceed839d3b5a2b5b57eb114bfd7eaef1071 Mon Sep 17 00:00:00 2001 From: jlandowner Date: Sun, 11 Jun 2023 14:03:30 +0000 Subject: [PATCH] Bump version: v0.9.0 --- charts/cosmo-controller-manager/Chart.yaml | 4 ++-- charts/cosmo-dashboard/Chart.yaml | 4 ++-- charts/cosmo-traefik/Chart.yaml | 2 +- cmd/auth-proxy/main.go | 2 +- cmd/controller-manager/main.go | 2 +- config/dashboard/kustomization.yaml | 2 +- config/manager/kustomization.yaml | 2 +- internal/cmd/version/version.go | 2 +- internal/dashboard/root.go | 2 +- 9 files changed, 11 insertions(+), 11 deletions(-) diff --git a/charts/cosmo-controller-manager/Chart.yaml b/charts/cosmo-controller-manager/Chart.yaml index dda156ca..52cfe20a 100644 --- a/charts/cosmo-controller-manager/Chart.yaml +++ b/charts/cosmo-controller-manager/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: cosmo-controller-manager description: COSMO Controller Manager Helm chart for Kubernetes type: application -version: 0.8.0 -appVersion: v0.8.0 +version: 0.9.0 +appVersion: v0.9.0 kubeVersion: ">= 1.19.0-0" home: https://github.com/cosmo-workspace/cosmo icon: https://raw.githubusercontent.com/cosmo-workspace/cosmo/main/logo/logo-square-small.png diff --git a/charts/cosmo-dashboard/Chart.yaml b/charts/cosmo-dashboard/Chart.yaml index 28f0e40d..bb46d570 100644 --- a/charts/cosmo-dashboard/Chart.yaml +++ b/charts/cosmo-dashboard/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: cosmo-dashboard description: COSMO Dashboard Helm chart for Kubernetes type: application -version: 0.8.0 -appVersion: v0.8.0 +version: 0.9.0 +appVersion: v0.9.0 kubeVersion: ">= 1.19.0-0" home: https://github.com/cosmo-workspace/cosmo icon: https://raw.githubusercontent.com/cosmo-workspace/cosmo/main/logo/logo-square-small.png diff --git a/charts/cosmo-traefik/Chart.yaml b/charts/cosmo-traefik/Chart.yaml index 873fb8ec..ef70fd7b 100644 --- a/charts/cosmo-traefik/Chart.yaml +++ b/charts/cosmo-traefik/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: cosmo-traefik description: COSMO traefij Helm chart for Kubernetes type: application -version: 0.8.0 +version: 0.9.0 appVersion: "23.0.1" kubeVersion: ">= 1.19.0-0" home: https://github.com/cosmo-workspace/cosmo diff --git a/cmd/auth-proxy/main.go b/cmd/auth-proxy/main.go index 3f554cf1..4ba39b11 100644 --- a/cmd/auth-proxy/main.go +++ b/cmd/auth-proxy/main.go @@ -175,5 +175,5 @@ func printOptions() { } func printVersion() { - fmt.Println("cosmo-auth-proxy - cosmo v0.8.0 cosmo-workspace 2022") + fmt.Println("cosmo-auth-proxy - cosmo v0.9.0 cosmo-workspace 2022") } diff --git a/cmd/controller-manager/main.go b/cmd/controller-manager/main.go index 9c4a3804..a01587ee 100644 --- a/cmd/controller-manager/main.go +++ b/cmd/controller-manager/main.go @@ -77,7 +77,7 @@ Complete documentation is available at http://github.com/cosmo-workspace/cosmo MIT 2023 cosmo-workspace/cosmo `, - Version: "v0.8.0 cosmo-workspace 2023", + Version: "v0.9.0 cosmo-workspace 2023", RunE: func(cmd *cobra.Command, args []string) error { cmd.SilenceUsage = true ctrl.SetLogger(zap.New(zap.UseFlagOptions(&o.ZapOpts))) diff --git a/config/dashboard/kustomization.yaml b/config/dashboard/kustomization.yaml index 10669805..3f4cc198 100644 --- a/config/dashboard/kustomization.yaml +++ b/config/dashboard/kustomization.yaml @@ -4,7 +4,7 @@ kind: Kustomization images: - name: dashboard newName: cosmo-dashboard - newTag: v0.8.0 + newTag: v0.9.0 resources: - dashboard.yaml diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index e8f56dfb..4c646c97 100644 --- a/config/manager/kustomization.yaml +++ b/config/manager/kustomization.yaml @@ -4,7 +4,7 @@ kind: Kustomization images: - name: controller newName: cosmo-controller-manager - newTag: v0.8.0 + newTag: v0.9.0 resources: - manager.yaml diff --git a/internal/cmd/version/version.go b/internal/cmd/version/version.go index 35494645..a4aab507 100644 --- a/internal/cmd/version/version.go +++ b/internal/cmd/version/version.go @@ -7,7 +7,7 @@ import ( "github.com/spf13/cobra" ) -const Footprint = `cosmoctl - cosmo v0.8.0 cosmo-workspace 2023` +const Footprint = `cosmoctl - cosmo v0.9.0 cosmo-workspace 2023` func AddCommand(cmd *cobra.Command, o *cmdutil.CliOptions) { versionCmd := &cobra.Command{ diff --git a/internal/dashboard/root.go b/internal/dashboard/root.go index 33512c33..82ccf244 100644 --- a/internal/dashboard/root.go +++ b/internal/dashboard/root.go @@ -80,7 +80,7 @@ Complete documentation is available at http://github.com/cosmo-workspace/cosmo MIT 2023 cosmo-workspace/cosmo `, - Version: "v0.8.0 cosmo-workspace 2023", + Version: "v0.9.0 cosmo-workspace 2023", PersistentPreRunE: o.PreRunE, RunE: o.RunE, }