Skip to content

Commit

Permalink
fix: use correct versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswalz committed Oct 12, 2020
1 parent dbab04a commit bae362b
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 @@ -15,7 +15,7 @@ var cfgFile string
var ShellCmd = &cobra.Command{
Use: "bit",
Short: "Bit is a Git CLI that predicts what you want to do",
Long: `v0.4.14`,
Long: `v0.5.7`,
Run: func(cmd *cobra.Command, args []string) {
completerSuggestionMap, bitCmdMap := CreateSuggestionMap(cmd)

Expand Down Expand Up @@ -133,7 +133,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 0.4.17")
fmt.Println("bit version v0.5.6")
}
if sub == "checkout" || sub == "switch" || sub == "co" {
branchName := ""
Expand Down

0 comments on commit bae362b

Please sign in to comment.