From 95323ac424aba276438463caa2922f2399ca0e24 Mon Sep 17 00:00:00 2001 From: chriswalz Date: Wed, 14 Oct 2020 09:44:10 -0400 Subject: [PATCH] bump to v0.6.0 --- cmd/rootShell.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 := ""