We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6316d4 commit 1ccb053Copy full SHA for 1ccb053
2 files changed
cmd/git-scope/main.go
@@ -14,7 +14,7 @@ import (
14
"github.com/Bharath-code/git-scope/internal/tui"
15
)
16
17
-const version = "1.0.0"
+const version = "1.0.1"
18
19
func usage() {
20
fmt.Fprintf(os.Stderr, `git-scope v%s — A fast TUI to see the status of all git repositories
internal/tui/view.go
@@ -94,7 +94,7 @@ func (m Model) renderDashboard() string {
94
95
// Header with logo on its own line
96
logo := lipgloss.NewStyle().Bold(true).Foreground(lipgloss.Color("#A78BFA")).Render("git-scope")
97
- version := lipgloss.NewStyle().Foreground(lipgloss.Color("#6B7280")).Render(" v1.0.0")
+ version := lipgloss.NewStyle().Foreground(lipgloss.Color("#6B7280")).Render(" v1.0.1")
98
b.WriteString(logo + version)
99
b.WriteString("\n\n")
100
0 commit comments