Skip to content

Commit

Permalink
bump tag
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswalz committed Oct 20, 2020
1 parent 0fd0de4 commit f975015
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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.7.0`,
Long: `v0.7.1`,
Run: func(cmd *cobra.Command, args []string) {
completerSuggestionMap, bitCmdMap := CreateSuggestionMap(cmd)

Expand Down Expand Up @@ -141,7 +141,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.7.0")
fmt.Println("bit version v0.7.1")
}
if isBranchChangeCommand(sub) {
branchName := ""
Expand Down
2 changes: 1 addition & 1 deletion cmd/update.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var updateCmd = &cobra.Command{
Long: ``,
Run: func(cmd *cobra.Command, args []string) {

version := "v0.7.0"
version := "v0.7.1"

// open-source edition
p := &update.Manager{
Expand Down
2 changes: 1 addition & 1 deletion cmd/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ func HandleExit() {
fmt.Println(v)
fmt.Println(string(debug.Stack()))
fmt.Println("OS:", runtime.GOOS, runtime.GOARCH)
fmt.Println("bit version v0.7.0")
fmt.Println("bit version v0.7.1")
PrintGitVersion()

}
Expand Down

0 comments on commit f975015

Please sign in to comment.