changed_version_naming

This commit is contained in:
Daniel Bedeleanu
2026-04-11 18:44:24 +03:00
parent 704934165f
commit 6981cadb57

View File

@@ -46,8 +46,8 @@ For technical architecture, data models, and stack details, refer to [PROJECT_AR
- **`save-version`**: When the user triggers this command, the AI MUST:
1. Increment the patch version in `VERSION.json`.
2. Stage all current changes (`git add .`).
3. Commit changes with message `Build [v.X.Y.Z]`.
4. Create a new branch named `v.X.Y.Z` from the current state.
3. Commit changes with message `Build [vX.Y.Z]`.
4. Create a new branch named `vX.Y.Z` from the current state.
5. Generate a production bundle ZIP (calls `./export_prod.sh`).
6. Stay on the current branch (`dev`).
- *Implementation*: Use `python3 scripts/save_version.py` to ensure consistency.