Skip to content

Commit

Permalink
bump to v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswalz committed Oct 14, 2020
1 parent 0b92c92 commit 95323ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/rootShell.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -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 := ""
Expand Down

0 comments on commit 95323ac

Please sign in to comment.