Skip to content

Commit bf14538

Browse files
mithun50Nevil DSouza
andcommitted
chore: bump version to v4.3.0
Updated version references across all files: - VERSION file - package.json - Python modules (SuperGemini/, setup/) - Documentation (README.md, CLAUDE.md, PUBLISHING.md) - Component metadata (features.json, commands.py, modes.py, mcp_docs.py) Co-Authored-By: Nevil DSouza <[email protected]> Co-Authored-By: Mithun Gowda B <[email protected]>
1 parent 8d53a2e commit bf14538

File tree

16 files changed

+35
-35
lines changed

16 files changed

+35
-35
lines changed

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ SuperGemini --version
375375
```
376376

377377
**Version Update Process**:
378-
1. Update `VERSION` file (e.g., `4.2.1``4.2.2`)
378+
1. Update `VERSION` file (e.g., `4.3.0``4.2.2`)
379379
2. Version automatically propagates to:
380380
- `pyproject.toml` (dynamic = {file = "VERSION"})
381381
- `setup.py` (`get_version()` reads VERSION file)

PUBLISHING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -408,9 +408,9 @@ git push origin v4.0.1
408408
```
409409

410410
**Pre-release Versions:**
411-
- **Alpha**: 4.2.1a1 (early development, unstable)
412-
- **Beta**: 4.2.1b1 (feature complete, testing phase)
413-
- **Release Candidate**: 4.2.1rc1 (production candidate, final testing)
411+
- **Alpha**: 4.3.0a1 (early development, unstable)
412+
- **Beta**: 4.3.0b1 (feature complete, testing phase)
413+
- **Release Candidate**: 4.3.0rc1 (production candidate, final testing)
414414
**Version Validation Checklist:**
415415

416416
**Pre-Release Validation:**

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SuperGemini v4.2.1 🚀
1+
# SuperGemini v4.3.0 🚀
22
<a href="https://github.com/SuperClaude-Org/SuperClaude_Framework" target="_blank">
33
<img src="https://img.shields.io/badge/Try-SuperClaude_Framework-brightgreen" alt="Try SuperClaude Framework"/>
44
</a>
@@ -8,7 +8,7 @@
88

99
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
1010
[![PyPI version](https://img.shields.io/pypi/v/SuperGemini.svg)](https://pypi.org/project/SuperGemini/)
11-
[![Version](https://img.shields.io/badge/version-4.2.1-blue.svg)](https://github.com/SuperClaude-Org/SuperGemini_Framework)
11+
[![Version](https://img.shields.io/badge/version-4.3.0-blue.svg)](https://github.com/SuperClaude-Org/SuperGemini_Framework)
1212
[![GitHub issues](https://img.shields.io/github/issues/SuperClaude-Org/SuperGemini_Framework)](https://github.com/SuperClaude-Org/SuperGemini_Framework/issues)
1313
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/SuperClaude-Org/SuperGemini_Framework/blob/master/CONTRIBUTING.md)
1414
[![Contributors](https://img.shields.io/github/contributors/SuperClaude-Org/SuperGemini_Framework)](https://github.com/SuperClaude-Org/SuperGemini_Framework/graphs/contributors)

SuperGemini/Modes/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
if version_file.exists():
2323
__version__ = version_file.read_text().strip()
2424
else:
25-
__version__ = "4.2.1" # Fallback
25+
__version__ = "4.3.0" # Fallback
2626
except Exception:
27-
__version__ = "4.2.1" # Final fallback
27+
__version__ = "4.3.0" # Final fallback
2828
__author__ = "NomenAK, Mithun Gowda B"
2929
__email__ = "[email protected]"
3030
__license__ = "MIT"

SuperGemini/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
if version_file.exists():
2323
__version__ = version_file.read_text().strip()
2424
else:
25-
__version__ = "4.2.1" # Fallback
25+
__version__ = "4.3.0" # Fallback
2626
except Exception:
27-
__version__ = "4.2.1" # Final fallback
27+
__version__ = "4.3.0" # Final fallback
2828
__author__ = "Mithun Gowda B, NomenAK"
2929
__email__ = "[email protected]"
3030
__license__ = "MIT"

SuperGemini/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from .version import __version__
2424
except ImportError:
2525
# Fallback if module structure is broken
26-
__version__ = "4.2.1"
26+
__version__ = "4.3.0"
2727

2828
# Add the 'setup' directory to the Python import path (modern approach)
2929

SuperGemini/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ def get_version() -> str:
2626
continue
2727

2828
# Fallback version - no logging needed since this is expected behavior
29-
return "4.2.1"
29+
return "4.3.0"
3030

3131
__version__ = get_version()

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.2.1
1+
4.3.0

claudedocs/CSI_WF.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Command Syntax Inconsistency Workflow (CSI_WF)
22

33
**Generated**: 2025-11-05
4-
**Project**: SuperGemini v4.2.1
4+
**Project**: SuperGemini v4.3.0
55
**Scope**: Documentation standardization for command syntax consistency
66

77
---
@@ -53,7 +53,7 @@ super().__init__(install_dir, Path("commands/sg")) # /sg: namespace
5353
```
5454
"SuperGemini is a meta-programming framework..."
5555
"Install SuperGemini with pipx"
56-
"SuperGemini Framework v4.2.1"
56+
"SuperGemini Framework v4.3.0"
5757
```
5858

5959
**Incorrect**:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@superclaude-org/supergemini",
3-
"version": "4.2.1",
3+
"version": "4.3.0",
44
"description": "SuperGemini Framework NPM wrapper - Official Node.js wrapper for the Python Gemini package. Enhances Gemini CLI with specialized commands and AI development tools.",
55
"scripts": {
66
"postinstall": "node ./bin/install.js",

0 commit comments

Comments
 (0)