diff --git a/cmd/rootShell.go b/cmd/rootShell.go index 71bded2..8739223 100644 --- a/cmd/rootShell.go +++ b/cmd/rootShell.go @@ -14,7 +14,7 @@ import ( var ShellCmd = &cobra.Command{ Use: "bit", Short: "Bit is a Git CLI that predicts what you want to do", - Long: `v0.5.12`, + Long: `v0.6.0`, Run: func(cmd *cobra.Command, args []string) { completerSuggestionMap, bitCmdMap := CreateSuggestionMap(cmd) @@ -137,7 +137,7 @@ func GitCommandsPromptUsed(args []string, suggestionMap map[string][]prompt.Sugg // expected usage format // bit (checkout|switch|co) [-b] branch-name if args[len(args)-1] == "--version" { - fmt.Println("bit version v0.5.12") + fmt.Println("bit version v0.6.0") } if isBranchCompletionCommand(sub) { branchName := ""