-
Notifications
You must be signed in to change notification settings - Fork 0
hygiene
Jules Martins edited this page Jul 16, 2026
·
1 revision
This project follows the FMG Development Bible. Deviations are not acceptable.
Conventional Commits format is mandatory:
<type>(<scope>): <subject>
<body: technical justification>
<footer: Fixes #123>
-
feat: New functionality. -
fix: Bug correction. -
docs: Documentation-only changes. -
style: Formatting, no logic change. -
refactor: Code restructuring that adds nothing and fixes nothing. -
chore: Maintenance tasks, dependency updates.
-
main: Production branch. Linear history only. -
feat/*: New features. -
fix/*: Bug corrections.
Prohibited: git push --force to main. Always.
- Update
VERSIONfile. - Update
CHANGELOG.md— move[Unreleased]entries under new version header. - Commit:
chore(release): bump version to X.Y.Z. - Tag:
git tag -a vX.Y.Z -m "Release vX.Y.Z". - Push tag:
git push origin vX.Y.Z.