From 6a80b12ce9a6462a903260b9c82c6bcf35577580 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 5 Nov 2025 16:18:31 +0000 Subject: [PATCH] Display version in --help output - Added version number to about text: 'Simple memory storage for Claude with MCP (v0.2.0)' - Added version to long_about as well - Now --help shows version clearly Users can verify version from both: aigpt --version aigpt --help --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 51d6604..3c23e3c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -11,8 +11,8 @@ use mcp::BaseMCPServer; #[derive(Parser)] #[command(name = "aigpt")] #[command(version)] -#[command(about = "Simple memory storage for Claude with MCP")] -#[command(long_about = "AI memory system with psychological priority scoring and game-style results!")] +#[command(about = "Simple memory storage for Claude with MCP (v0.2.0)")] +#[command(long_about = "AI memory system with psychological priority scoring and game-style results!\nVersion: 0.2.0")] struct Cli { #[command(subcommand)] command: Commands,