Page:
AUTO-BUMP
Pages
ARCHITECTURE
AUTO-BUMP
AUTO_CREATE_ORG_PROJECTS
Branching-Strategy
CLI_AUTOMATION
Coding-Standards
DEPLOY_SCRIPTS
DOLIBARR_MODULE_IDS
DRY_RUN_PATTERN
Documentation-Standards
File-Header-Standards
Home
JOOMLA_SYNC
LEGAL_DOC_GENERATOR_WEB_README
MANIFEST-STANDARD
MINIFICATION
MONITORING_SCRIPTS
NEW_SCRIPTS
QUICKSTART_ORG_PROJECTS
UPDATE-SERVER
WIKI_STANDARDS
WORKFLOW_STANDARDS
api-automation-index
api-definitions-default-index
api-definitions-sync-index
api-deploy-index
api-fix-index
api-index
api-maintenance-index.-
api-maintenance-index
api-plugin-index.-
api-plugin-index
api-tests-index.-
api-tests-sample-index.-
api-tests-sample-index
api-validate-index.-
automation-README.-
automation-branch-version-automation.-
automation-push-files.-
automation-repo-cleanup.-
client-repos.-.-
client-repos
standards-mokostandards-file-spec.-
standards-mokostandards-file-spec
templates-client-waas
templates-dolibarr
templates-generic
templates-mcp
unnamed
workflows-README.-
workflows-README
workflows-auto-release.-
workflows-auto-release
workflows-branch-protection.-
workflows-branch-protection
workflows-build-release.-
workflows-build-release
workflows-cascade-dev.-
workflows-cascade-dev
workflows-changelog-management.-
workflows-changelog-management
workflows-demo-deployment.-
workflows-demo-deployment
workflows-dev-branch-tracking.-
workflows-dev-branch-tracking
workflows-dev-deployment.-
workflows-dev-deployment
workflows-index.-
workflows-index
workflows-release-system.-
workflows-release-system
workflows-renovate.-
workflows-renovate
workflows-reusable-workflows.-
workflows-reusable-workflows
workflows-rs-deployment.-
workflows-rs-deployment
workflows-secret-scanning.-
workflows-secret-scanning
workflows-shared-workflows.-
workflows-shared-workflows
workflows-standards-compliance.-
workflows-standards-compliance
workflows-static-analysis.-
workflows-static-analysis
workflows-sub-issue-management.-
workflows-sub-issue-management
workflows-update-server.-
workflows-update-server
workflows-workflow-architecture.-
workflows-workflow-architecture
Clone
1
AUTO-BUMP
Jonathan Miller edited this page 2026-05-26 22:15:36 +00:00
Table of Contents
Auto Version Bump
Every push to dev triggers an automatic patch version bump via auto-bump.yml.
How It Works
version_bump.phpincrements the patch segment (ZZ+1)version_set_platform.phppropagates to all platform filesversion_check.php --fixensures consistency- Commits with
[skip ci]to avoid retriggering
Skip Conditions
[skip ci]in commit message[skip bump]in commit message
Version Bump Sequence
| Trigger | Bump Type | Example |
|---|---|---|
| Push to dev | Patch (ZZ+1) | 09.02.00 -> 09.02.01 |
| Pre-release (alpha/beta/rc) | None (already bumped) | uses current |
| PR merge to main (stable) | Minor (YY+1) | 09.02.01 -> 09.03.00 |
Files Updated
version_bump.php writes to all version sources:
- .mokogitea/manifest.xml
- README.md
- Joomla XML manifests
- Dolibarr mod*.class.php
- composer.json
- package.json (Node.js)
- pyproject.toml (Python)