Skip to content

Commit 2665c3c

Browse files
committed
fix(logging): remove hard-coded version from banner
Remove hard-coded "v1.1.0" so the CLI banner prints "Geeto" without a static version. This prevents stale version numbers in output and removes the need to update the banner on each release; the version can be sourced from package metadata in a follow-up change.
1 parent d674ace commit 2665c3c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/utils/logging.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export const log = {
7171
spinner: () => new Spinner(),
7272
banner: () => {
7373
console.log(
74-
`${colors.cyan}${colors.bright}Geeto v1.1.0${colors.reset} ${colors.gray}— AI-Powered Git Workflow Automation${colors.reset}`
74+
`${colors.cyan}${colors.bright}Geeto${colors.reset} ${colors.gray}— AI-Powered Git Workflow Automation${colors.reset}`
7575
)
7676
},
7777
} as const

0 commit comments

Comments
 (0)