fix: update hardcoded version references to use dynamic version

- Update DEFAULT_VERSION in version.ts from 3.5.1 to 3.14.0
- Replace hardcoded version in sharedConfigManager with getBrainyVersion()
- Replace hardcoded CLI version display with dynamic version
- Ensures all user-facing version displays stay current automatically

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
David Snelling 2025-09-26 13:41:16 -07:00
parent ab4c8d82f5
commit 29ecf8c271
3 changed files with 5 additions and 3 deletions

View file

@ -10,6 +10,7 @@ import inquirer from 'inquirer'
import fuzzy from 'fuzzy'
import ora from 'ora'
import { Brainy } from '../brainy.js'
import { getBrainyVersion } from '../utils/version.js'
// Professional color scheme
export const colors = {
@ -576,7 +577,7 @@ export function showWelcome(): void {
`))
console.log(colors.dim('Version 1.5.0 • Type "help" for commands'))
console.log(colors.dim(`Version ${getBrainyVersion()} • Type "help" for commands`))
console.log()
}