Skip to content

Commit

Permalink
fix version (#139)
Browse files Browse the repository at this point in the history
Signed-off-by: 6za <53096417+6za@users.noreply.github.com>
  • Loading branch information
6za committed Jul 20, 2022
1 parent 05fa4f1 commit 8c09dc9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cmd
import (
"github.com/kubefirst/kubefirst/configs"
"github.com/spf13/cobra"
"log"
"fmt"
)

func init() {
Expand All @@ -16,6 +16,6 @@ var versionCmd = &cobra.Command{
Long: `All software has versions. This is kubefirst's`,
Run: func(cmd *cobra.Command, args []string) {
config := configs.ReadConfig()
log.Printf("kubefirst-cli golang utility version: v%s", config.KubefirstVersion)
fmt.Printf("\n\nkubefirst-cli golang utility version: v%s\n \n ", config.KubefirstVersion)
},
}
2 changes: 1 addition & 1 deletion configs/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func ReadConfig() *Config {
// todo adopt latest helmVersion := "v3.9.0"
config.HelmVersion = "v3.2.1"

config.KubefirstVersion = "0.1.1"
config.KubefirstVersion = "1.8.0"

config.InstallerEmail = "kubefirst-bot@kubefirst.com"

Expand Down

0 comments on commit 8c09dc9

Please sign in to comment.