From 87329ff6f1d0063662f5c9484f7decc92b244a34 Mon Sep 17 00:00:00 2001 From: jlandowner Date: Thu, 31 Aug 2023 03:48:00 +0000 Subject: [PATCH] Bump version: v1.0.0-rc5 --- charts/cosmo/Chart.yaml | 4 ++-- 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 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/charts/cosmo/Chart.yaml b/charts/cosmo/Chart.yaml index e996114f..8c010931 100644 --- a/charts/cosmo/Chart.yaml +++ b/charts/cosmo/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: cosmo description: COSMO Helm chart for Kubernetes type: application -version: 1.0.0-rc4 -appVersion: v1.0.0-rc4 +version: 1.0.0-rc5 +appVersion: v1.0.0-rc5 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/cmd/controller-manager/main.go b/cmd/controller-manager/main.go index 17568de1..e827ba87 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: "v1.0.0-rc4 cosmo-workspace 2023", + Version: "v1.0.0-rc5 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 fc64a5be..bba34cdd 100644 --- a/config/dashboard/kustomization.yaml +++ b/config/dashboard/kustomization.yaml @@ -4,7 +4,7 @@ kind: Kustomization images: - name: dashboard newName: cosmo-dashboard - newTag: v1.0.0-rc4 + newTag: v1.0.0-rc5 resources: - dashboard.yaml diff --git a/config/manager/kustomization.yaml b/config/manager/kustomization.yaml index 60b68509..930dcfdc 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: v1.0.0-rc4 + newTag: v1.0.0-rc5 resources: - manager.yaml diff --git a/internal/cmd/version/version.go b/internal/cmd/version/version.go index fd39ffbe..4be2f9e6 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 v1.0.0-rc4 cosmo-workspace 2023` +const Footprint = `cosmoctl - cosmo v1.0.0-rc5 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 482830a5..fe1c6f0a 100644 --- a/internal/dashboard/root.go +++ b/internal/dashboard/root.go @@ -83,7 +83,7 @@ Complete documentation is available at http://github.com/cosmo-workspace/cosmo MIT 2023 cosmo-workspace/cosmo `, - Version: "v1.0.0-rc4 cosmo-workspace 2023", + Version: "v1.0.0-rc5 cosmo-workspace 2023", PersistentPreRunE: o.PreRunE, RunE: o.RunE, }