From 720030e197b225b47d53e3af86b9a501181c2a44 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 5 Nov 2025 16:16:26 +0000 Subject: [PATCH] Add version display and bump to 0.2.0 - Added --version/-V option to show version - Bumped version from 0.1.0 to 0.2.0 - Updated description to mention game mode Users can now verify which version is running with: aigpt --version This helps debug whether the latest build is being used. --- Cargo.toml | 4 ++-- src/main.rs | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d60cfa0..56c6164 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "aigpt" -version = "0.1.0" +version = "0.2.0" edition = "2021" authors = ["syui"] -description = "Simple memory storage for Claude with MCP" +description = "Simple memory storage for Claude with MCP (with game mode!)" [[bin]] diff --git a/src/main.rs b/src/main.rs index 68477a4..51d6604 100644 --- a/src/main.rs +++ b/src/main.rs @@ -10,7 +10,9 @@ 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!")] struct Cli { #[command(subcommand)] command: Commands,