Skip to content

Commit 28063d4

Browse files
Elaine YINclaude
authored andcommitted
fix(update): align version fallback with main.ts (0.3.1)
update.ts used '0.0.0' as fallback while main.ts used '0.3.1', causing `minimax update` to show "Current version: 0.0.0". Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 920273d commit 28063d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/commands/update.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { defineCommand } from '../command';
22

3-
const CLI_VERSION = process.env.CLI_VERSION ?? '0.0.0';
3+
const CLI_VERSION = process.env.CLI_VERSION ?? '0.3.1';
44

55
export default defineCommand({
66
name: 'update',

0 commit comments

Comments
 (0)