📝 Complete version update to 4.0.4 across all files

- Updated all documentation references
- Updated all Python module versions
- Updated configuration and metadata files
- Synchronized version across entire codebase
This commit is contained in:
NomenAK 2025-08-22 21:13:05 +02:00
parent e0d5b8cae5
commit 418683c265
15 changed files with 55 additions and 55 deletions

View File

@ -48,7 +48,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Tab completion support for `/sc:` prefix to discover all SuperClaude commands - Tab completion support for `/sc:` prefix to discover all SuperClaude commands
- Guides/ directory replaces Docs/ for improved organization - Guides/ directory replaces Docs/ for improved organization
## [4.0.3] - 2025-08-22 ## [4.0.4] - 2025-08-22
### Added ### Added
- **Agent System**: 13 specialized domain experts replacing personas - **Agent System**: 13 specialized domain experts replacing personas

View File

@ -518,7 +518,7 @@ This code of conduct draws inspiration from several established community standa
**Last Updated**: December 2024 (SuperClaude Framework v4.0) **Last Updated**: December 2024 (SuperClaude Framework v4.0)
**Next Review**: June 2025 (Semi-annual review cycle) **Next Review**: June 2025 (Semi-annual review cycle)
**Version**: 4.0.3 (Updated for v4 community structure and governance) **Version**: 4.0.4 (Updated for v4 community structure and governance)
**Review Schedule:** **Review Schedule:**
- **Semi-Annual Reviews**: Policy effectiveness assessment and community feedback integration - **Semi-Annual Reviews**: Policy effectiveness assessment and community feedback integration

View File

@ -27,7 +27,7 @@ SuperClaude Framework transforms Claude Code into a structured development platf
**Good Bug Report Example:** **Good Bug Report Example:**
``` ```
**Environment:** **Environment:**
- SuperClaude: 4.0.3 - SuperClaude: 4.0.4
- OS: Ubuntu 22.04 - OS: Ubuntu 22.04
- Claude Code: 1.5.2 - Claude Code: 1.5.2
- Python: 3.9.7 - Python: 3.9.7

View File

@ -102,7 +102,7 @@ The installer will:
**Verify Installation:** **Verify Installation:**
```bash ```bash
python3 -m SuperClaude --version # Should show 4.0.3 python3 -m SuperClaude --version # Should show 4.0.4
SuperClaude install --list-components SuperClaude install --list-components
``` ```

View File

@ -13,7 +13,7 @@ Test: /sc:brainstorm "test" should ask questions
### 2. Installation Verification ### 2. Installation Verification
```bash ```bash
python3 -m SuperClaude --version # Should show 4.0.3 python3 -m SuperClaude --version # Should show 4.0.4
# If not working: # If not working:
pip install --upgrade SuperClaude pip install --upgrade SuperClaude
@ -59,7 +59,7 @@ pip3 install SuperClaude
``` ```
## Verification Checklist ## Verification Checklist
- [ ] `python3 -m SuperClaude --version` returns 4.0.3 - [ ] `python3 -m SuperClaude --version` returns 4.0.4
- [ ] `/sc:brainstorm "test"` works in Claude Code - [ ] `/sc:brainstorm "test"` works in Claude Code
- [ ] `SuperClaude install --list-components` shows components - [ ] `SuperClaude install --list-components` shows components

View File

@ -6,7 +6,7 @@ Quick fixes to advanced diagnostics for SuperClaude Framework issues.
**Installation Verification:** **Installation Verification:**
```bash ```bash
python3 -m SuperClaude --version # Should show 4.0.3 python3 -m SuperClaude --version # Should show 4.0.4
SuperClaude install --list-components SuperClaude install --list-components
``` ```
@ -19,7 +19,7 @@ SuperClaude install --list-components
``` ```
**Resolution Checklist:** **Resolution Checklist:**
- [ ] Version commands work and show 4.0.3 - [ ] Version commands work and show 4.0.4
- [ ] `/sc:` commands respond in Claude Code - [ ] `/sc:` commands respond in Claude Code
- [ ] MCP servers listed: `SuperClaude install --list-components | grep mcp` - [ ] MCP servers listed: `SuperClaude install --list-components | grep mcp`

View File

@ -67,7 +67,7 @@ SuperClaude provides behavioral context files that Claude Code reads to adopt sp
```bash ```bash
# Verify SuperClaude is working (primary method) # Verify SuperClaude is working (primary method)
python3 -m SuperClaude --version python3 -m SuperClaude --version
# Example output: SuperClaude 4.0.3 # Example output: SuperClaude 4.0.4
# Claude Code CLI version check # Claude Code CLI version check
claude --version claude --version

View File

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

View File

@ -2,7 +2,7 @@
## 🚀 Complete Publishing Guide for PyPI and NPM ## 🚀 Complete Publishing Guide for PyPI and NPM
**Version**: 4.0.3 (Both PyPI and NPM) **Version**: 4.0.4 (Both PyPI and NPM)
**Date**: 2025-08-22 **Date**: 2025-08-22
**Status**: READY FOR RELEASE **Status**: READY FOR RELEASE
@ -11,10 +11,10 @@
## 📋 Pre-Flight Checklist ## 📋 Pre-Flight Checklist
### Critical Fixes Applied ✅ ### Critical Fixes Applied ✅
- [x] Version consistency fixed (Both: 4.0.3) - [x] Version consistency fixed (Both: 4.0.4)
- [x] License format updated to PEP 639 compliance - [x] License format updated to PEP 639 compliance
- [x] NPM package name corrected to `@bifrost_inc/superclaude` - [x] NPM package name corrected to `@bifrost_inc/superclaude`
- [x] NPM version incremented to 4.0.3 (from existing 4.0.2) - [x] NPM version incremented to 4.0.4 (from existing 4.0.2)
### Required Accounts ### Required Accounts
- [ ] PyPI account with maintainer access - [ ] PyPI account with maintainer access
@ -113,7 +113,7 @@
# Install from TestPyPI # Install from TestPyPI
pip install --index-url https://test.pypi.org/simple/ \ pip install --index-url https://test.pypi.org/simple/ \
--extra-index-url https://pypi.org/simple/ \ --extra-index-url https://pypi.org/simple/ \
SuperClaude==4.0.3 SuperClaude==4.0.4
# Test the CLI # Test the CLI
SuperClaude --version SuperClaude --version
@ -131,7 +131,7 @@
npm publish --dry-run npm publish --dry-run
# Check output for: # Check output for:
# - Correct package name: @bifrost_inc/superclaude # - Correct package name: @bifrost_inc/superclaude
# - Version: 4.0.3 # - Version: 4.0.4
# - Files included: bin/, README.md, LICENSE, package.json # - Files included: bin/, README.md, LICENSE, package.json
``` ```
@ -141,7 +141,7 @@
npm pack npm pack
# Test local installation # Test local installation
npm install -g ./superclaude-org-superclaude-4.0.3.tgz npm install -g ./superclaude-org-superclaude-4.0.4.tgz
# Verify it works # Verify it works
superclaude --version superclaude --version
@ -166,8 +166,8 @@ git status
# Should show: nothing to commit, working tree clean # Should show: nothing to commit, working tree clean
# Tag the release # Tag the release
git tag -a v4.0.3 -m "Release v4.0.3 - Production ready" git tag -a v4.0.4 -m "Release v4.0.4 - Production ready"
git push origin v4.0.3 git push origin v4.0.4
``` ```
### PyPI Production Release ### PyPI Production Release
@ -194,7 +194,7 @@ git push origin v4.0.3
4. **Verify on PyPI**: 4. **Verify on PyPI**:
```bash ```bash
# Wait 1-2 minutes for CDN propagation # Wait 1-2 minutes for CDN propagation
pip install SuperClaude==4.0.3 --no-cache-dir pip install SuperClaude==4.0.4 --no-cache-dir
SuperClaude --version SuperClaude --version
``` ```
@ -216,10 +216,10 @@ git push origin v4.0.3
3. **Verify on NPM**: 3. **Verify on NPM**:
```bash ```bash
# Wait 1-2 minutes # Wait 1-2 minutes
npm view @bifrost_inc/superclaude@4.0.3 npm view @bifrost_inc/superclaude@4.0.4
# Test installation # Test installation
npm install -g @bifrost_inc/superclaude@4.0.3 npm install -g @bifrost_inc/superclaude@4.0.4
superclaude --version superclaude --version
``` ```
@ -232,10 +232,10 @@ git push origin v4.0.3
1. **PyPI Verification**: 1. **PyPI Verification**:
```bash ```bash
# Check PyPI page # Check PyPI page
open https://pypi.org/project/SuperClaude/4.0.3/ open https://pypi.org/project/SuperClaude/4.0.4/
# Fresh install test # Fresh install test
pip install SuperClaude==4.0.3 --no-cache-dir pip install SuperClaude==4.0.4 --no-cache-dir
SuperClaude install --list-components SuperClaude install --list-components
``` ```
@ -245,7 +245,7 @@ git push origin v4.0.3
open https://www.npmjs.com/package/@bifrost_inc/superclaude open https://www.npmjs.com/package/@bifrost_inc/superclaude
# Fresh install test # Fresh install test
npm install -g @bifrost_inc/superclaude@4.0.3 npm install -g @bifrost_inc/superclaude@4.0.4
superclaude install --list-components superclaude install --list-components
``` ```
@ -266,7 +266,7 @@ git push origin v4.0.3
1. **Yank the release** (makes it non-installable): 1. **Yank the release** (makes it non-installable):
```bash ```bash
# Via web interface: # Via web interface:
# https://pypi.org/manage/project/SuperClaude/release/4.0.3/ # https://pypi.org/manage/project/SuperClaude/release/4.0.4/
# Click "Options" → "Yank" # Click "Options" → "Yank"
# Users can still install if they specify exact version # Users can still install if they specify exact version
@ -283,12 +283,12 @@ git push origin v4.0.3
1. **Unpublish** (within 72 hours): 1. **Unpublish** (within 72 hours):
```bash ```bash
npm unpublish @bifrost_inc/superclaude@4.0.3 npm unpublish @bifrost_inc/superclaude@4.0.4
``` ```
2. **Deprecate** (after 72 hours): 2. **Deprecate** (after 72 hours):
```bash ```bash
npm deprecate @bifrost_inc/superclaude@4.0.3 "Critical bug - use 4.0.4" npm deprecate @bifrost_inc/superclaude@4.0.4 "Critical bug - use 4.0.4"
``` ```
--- ---
@ -298,8 +298,8 @@ git push origin v4.0.3
### GitHub Release ### GitHub Release
1. Create release at: https://github.com/SuperClaude-Org/SuperClaude_Framework/releases/new 1. Create release at: https://github.com/SuperClaude-Org/SuperClaude_Framework/releases/new
2. Tag: v4.0.3 2. Tag: v4.0.4
3. Title: "SuperClaude v4.0.3 - Production Release" 3. Title: "SuperClaude v4.0.4 - Production Release"
4. Description: Include changelog and installation instructions 4. Description: Include changelog and installation instructions
### Update Documentation ### Update Documentation
@ -313,7 +313,7 @@ git push origin v4.0.3
### Community Announcement Template ### Community Announcement Template
```markdown ```markdown
🎉 SuperClaude v4.0.3 Released! 🎉 SuperClaude v4.0.4 Released!
Install via: Install via:
- PyPI: `pip install SuperClaude` - PyPI: `pip install SuperClaude`
@ -381,8 +381,8 @@ npm publish --dry-run # Test locally
npm publish --otp=123456 # Release to NPM npm publish --otp=123456 # Release to NPM
# Verification # Verification
pip install SuperClaude==4.0.3 pip install SuperClaude==4.0.4
npm install -g @bifrost_inc/superclaude@4.0.3 npm install -g @bifrost_inc/superclaude@4.0.4
``` ```
--- ---

View File

@ -723,7 +723,7 @@ For organizations requiring dedicated security support:
**Last Updated**: December 2024 (SuperClaude Framework v4.0) **Last Updated**: December 2024 (SuperClaude Framework v4.0)
**Next Review**: March 2025 (Quarterly review cycle) **Next Review**: March 2025 (Quarterly review cycle)
**Version**: 4.0.3 (Updated for v4 architectural changes) **Version**: 4.0.4 (Updated for v4 architectural changes)
**Review Schedule:** **Review Schedule:**
- **Quarterly Reviews**: Security policy accuracy and completeness assessment - **Quarterly Reviews**: Security policy accuracy and completeness assessment

View File

@ -19,7 +19,7 @@ class AgentsComponent(Component):
"""Get component metadata""" """Get component metadata"""
return { return {
"name": "agents", "name": "agents",
"version": "4.0.3", "version": "4.0.4",
"description": "14 specialized AI agents with domain expertise and intelligent routing", "description": "14 specialized AI agents with domain expertise and intelligent routing",
"category": "agents" "category": "agents"
} }
@ -29,7 +29,7 @@ class AgentsComponent(Component):
return { return {
"components": { "components": {
"agents": { "agents": {
"version": "4.0.3", "version": "4.0.4",
"installed": True, "installed": True,
"agents_count": len(self.component_files), "agents_count": len(self.component_files),
"install_directory": str(self.install_component_subdir) "install_directory": str(self.install_component_subdir)
@ -63,7 +63,7 @@ class AgentsComponent(Component):
# Add component registration # Add component registration
self.settings_manager.add_component_registration("agents", { self.settings_manager.add_component_registration("agents", {
"version": "4.0.3", "version": "4.0.4",
"category": "agents", "category": "agents",
"agents_count": len(self.component_files), "agents_count": len(self.component_files),
"agents_list": self.component_files "agents_list": self.component_files

View File

@ -102,7 +102,7 @@ class MCPComponent(Component):
"""Get component metadata""" """Get component metadata"""
return { return {
"name": "mcp", "name": "mcp",
"version": "4.0.3", "version": "4.0.4",
"description": "MCP server configuration management via .claude.json", "description": "MCP server configuration management via .claude.json",
"category": "integration" "category": "integration"
} }
@ -348,7 +348,7 @@ class MCPComponent(Component):
metadata_mods = { metadata_mods = {
"components": { "components": {
"mcp": { "mcp": {
"version": "4.0.3", "version": "4.0.4",
"installed": True, "installed": True,
"servers_configured": len(self.selected_servers), "servers_configured": len(self.selected_servers),
"configured_servers": self.selected_servers "configured_servers": self.selected_servers

View File

@ -34,7 +34,7 @@ class MCPDocsComponent(Component):
"""Get component metadata""" """Get component metadata"""
return { return {
"name": "mcp_docs", "name": "mcp_docs",
"version": "4.0.3", "version": "4.0.4",
"description": "MCP server documentation and usage guides", "description": "MCP server documentation and usage guides",
"category": "documentation" "category": "documentation"
} }
@ -135,7 +135,7 @@ class MCPDocsComponent(Component):
metadata_mods = { metadata_mods = {
"components": { "components": {
"mcp_docs": { "mcp_docs": {
"version": "4.0.3", "version": "4.0.4",
"installed": True, "installed": True,
"files_count": len(self.component_files), "files_count": len(self.component_files),
"servers_documented": self.selected_servers "servers_documented": self.selected_servers

View File

@ -20,7 +20,7 @@ class ModesComponent(Component):
"""Get component metadata""" """Get component metadata"""
return { return {
"name": "modes", "name": "modes",
"version": "4.0.3", "version": "4.0.4",
"description": "SuperClaude behavioral modes (Brainstorming, Introspection, Task Management, Token Efficiency)", "description": "SuperClaude behavioral modes (Brainstorming, Introspection, Task Management, Token Efficiency)",
"category": "modes" "category": "modes"
} }
@ -69,7 +69,7 @@ class ModesComponent(Component):
metadata_mods = { metadata_mods = {
"components": { "components": {
"modes": { "modes": {
"version": "4.0.3", "version": "4.0.4",
"installed": True, "installed": True,
"files_count": len(self.component_files) "files_count": len(self.component_files)
} }

View File

@ -2,7 +2,7 @@
"components": { "components": {
"core": { "core": {
"name": "core", "name": "core",
"version": "4.0.3", "version": "4.0.4",
"description": "SuperClaude framework documentation and core files", "description": "SuperClaude framework documentation and core files",
"category": "core", "category": "core",
"dependencies": [], "dependencies": [],
@ -11,7 +11,7 @@
}, },
"commands": { "commands": {
"name": "commands", "name": "commands",
"version": "4.0.3", "version": "4.0.4",
"description": "SuperClaude slash command definitions", "description": "SuperClaude slash command definitions",
"category": "commands", "category": "commands",
"dependencies": ["core"], "dependencies": ["core"],
@ -20,7 +20,7 @@
}, },
"mcp": { "mcp": {
"name": "mcp", "name": "mcp",
"version": "4.0.3", "version": "4.0.4",
"description": "MCP server configuration management via .claude.json", "description": "MCP server configuration management via .claude.json",
"category": "integration", "category": "integration",
"dependencies": ["core"], "dependencies": ["core"],
@ -29,7 +29,7 @@
}, },
"modes": { "modes": {
"name": "modes", "name": "modes",
"version": "4.0.3", "version": "4.0.4",
"description": "SuperClaude behavioral modes (Brainstorming, Introspection, Task Management, Token Efficiency)", "description": "SuperClaude behavioral modes (Brainstorming, Introspection, Task Management, Token Efficiency)",
"category": "modes", "category": "modes",
"dependencies": ["core"], "dependencies": ["core"],
@ -38,7 +38,7 @@
}, },
"mcp_docs": { "mcp_docs": {
"name": "mcp_docs", "name": "mcp_docs",
"version": "4.0.3", "version": "4.0.4",
"description": "MCP server documentation and usage guides", "description": "MCP server documentation and usage guides",
"category": "documentation", "category": "documentation",
"dependencies": ["core"], "dependencies": ["core"],
@ -47,7 +47,7 @@
}, },
"agents": { "agents": {
"name": "agents", "name": "agents",
"version": "4.0.3", "version": "4.0.4",
"description": "14 specialized AI agents with domain expertise and intelligent routing", "description": "14 specialized AI agents with domain expertise and intelligent routing",
"category": "agents", "category": "agents",
"dependencies": ["core"], "dependencies": ["core"],