🔖 Complete version standardization to 4.0.3

- Update all remaining version references to 4.0.3
- Fix documentation files (SECURITY.md, CODE_OF_CONDUCT.md, CONTRIBUTING.md)
- Update PUBLISHING.md version references and examples
- Fix all component metadata versions (mcp, modes, mcp_docs)
- Update setup/data/features.json versions
- Fix SuperClaude __main__.py version strings
- Update all documentation command examples
- Standardize version across 15+ files

All components now consistently at v4.0.3 for dual PyPI/NPM release.

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
NomenAK
2025-08-22 20:49:39 +02:00
parent e470193b11
commit 5d0546e041
15 changed files with 72 additions and 61 deletions

View File

@@ -54,7 +54,7 @@ pip install SuperClaude
pip install git+https://github.com/SuperClaude-Org/SuperClaude_Framework.git
# Specific version
pip install SuperClaude==4.0.0
pip install SuperClaude==4.0.3
```
**Automated Release Process:**
@@ -212,7 +212,7 @@ git config tag.gpgsign true
**Package Information:**
**Package Name**: `SuperClaude`
**Current Version**: 4.0.0 (Major release with v4 architecture)
**Current Version**: 4.0.3 (Major release with v4 architecture)
**PyPI URL**: https://pypi.org/project/SuperClaude/
**GitHub URL**: https://github.com/SuperClaude-Org/SuperClaude_Framework
@@ -363,12 +363,12 @@ git push origin v4.0.1
**Version Scheme (Semantic Versioning):**
**Format**: MAJOR.MINOR.PATCH (e.g., 4.0.0)
**Format**: MAJOR.MINOR.PATCH (e.g., 4.0.3)
- **MAJOR**: Breaking changes, architectural updates, incompatible API changes
- **MINOR**: New features, agent additions, MCP server integrations, backward-compatible changes
- **PATCH**: Bug fixes, documentation updates, security patches, backward-compatible fixes
**Current Version**: 4.0.0
**Current Version**: 4.0.3
- Major architectural update with enhanced agent coordination
- 6 MCP server integrations and 14 specialized agents
- Comprehensive command system with 21 slash commands
@@ -472,7 +472,7 @@ git tag -v v4.0.1
**Source Distribution Contents:**
```
SuperClaude-4.0.0.tar.gz
SuperClaude-4.0.3.tar.gz
├── superclaude/
│ ├── __init__.py # Version and package metadata
│ ├── cli.py # Main CLI entry point
@@ -501,9 +501,9 @@ SuperClaude-4.0.0.tar.gz
**Wheel Distribution:**
```
SuperClaude-4.0.0-py3-none-any.whl
SuperClaude-4.0.3-py3-none-any.whl
├── superclaude/ # Compiled package code
├── SuperClaude-4.0.0.dist-info/ # Package metadata
├── SuperClaude-4.0.3.dist-info/ # Package metadata
│ ├── METADATA # Package description and requirements
│ ├── WHEEL # Wheel format metadata
│ ├── entry_points.txt # CLI entry points
@@ -637,7 +637,7 @@ which SuperClaude
# Issue: "Tag validation failed"
# Solution: Ensure tag follows semver pattern
git tag -d v4.0.0 && git tag v4.0.0
git tag -d v4.0.3 && git tag v4.0.3
```
**Publishing Support Resources:**