🔖 Bump version to 4.0.7

- Add automatic update checking feature
- Fix component validation for pipx installations
- Update all version references across 35+ files
This commit is contained in:
NomenAK
2025-08-23 12:52:10 +02:00
parent 291b8a0c2b
commit 45bc5b8a98
27 changed files with 69 additions and 48 deletions

View File

@@ -4,7 +4,7 @@ SuperClaude CLI Base Module
Base class for all CLI operations providing common functionality
"""
__version__ = "4.0.6"
__version__ = "4.0.7"
def get_command_info():

View File

@@ -234,7 +234,7 @@ def display_backup_list(backups: List[Dict[str, Any]]) -> None:
def create_backup_metadata(install_dir: Path) -> Dict[str, Any]:
"""Create metadata for the backup"""
metadata = {
"backup_version": "4.0.6",
"backup_version": "4.0.7",
"created": datetime.now().isoformat(),
"install_dir": str(install_dir),
"components": {},

View File

@@ -405,7 +405,7 @@ def run(args: argparse.Namespace) -> int:
# Display header
if not args.quiet:
display_header(
"SuperClaude Update v4.0.6",
"SuperClaude Update v4.0.7",
"Updating SuperClaude framework components"
)