Skip to content

Commit 1bb5389

Browse files
committed
update readme
1 parent 859c995 commit 1bb5389

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,9 @@ v0.5
181181
- [X] fix bit tab completion (bitcomplete)
182182
- [X] fix edge case where there is an invalid ref
183183
- [X] various minor fixes
184-
- [X] Deployment: automatic versioning
184+
- [X] more completions
185+
- [X] better suggestion filtering
186+
- [X] absolute and relative times for branch suggestions
185187

186188
v0.4
187189

cmd/rootShell.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
var ShellCmd = &cobra.Command{
1515
Use: "bit",
1616
Short: "Bit is a Git CLI that predicts what you want to do",
17-
Long: `v0.5.11`,
17+
Long: `v0.5.12`,
1818
Run: func(cmd *cobra.Command, args []string) {
1919
completerSuggestionMap, bitCmdMap := CreateSuggestionMap(cmd)
2020

@@ -137,7 +137,7 @@ func GitCommandsPromptUsed(args []string, suggestionMap map[string][]prompt.Sugg
137137
// expected usage format
138138
// bit (checkout|switch|co) [-b] branch-name
139139
if args[len(args)-1] == "--version" {
140-
fmt.Println("bit version v0.5.11")
140+
fmt.Println("bit version v0.5.12")
141141
}
142142
if isBranchCompletionCommand(sub) {
143143
branchName := ""

0 commit comments

Comments
 (0)