Release Process
Guidelines for releasing new versions of PHP K8s.
Version Numbering
Follows Semantic Versioning:
- MAJOR - Breaking changes
- MINOR - New features (backward compatible)
- PATCH - Bug fixes (backward compatible)
Release Checklist
- Update changelog
- Run full test suite
- Run static analysis
- Tag release
- Publish to Packagist (automatic)
Tagging
bash
git tag -a v3.x.x -m "Release v3.x.x"
git push origin v3.x.xRelease process documentation for cuppett/php-k8s fork