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.
This commit is contained in:
Claude
2025-11-05 16:16:26 +00:00
parent e426700a91
commit 720030e197
2 changed files with 4 additions and 2 deletions

View File

@@ -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]]

View File

@@ -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,