release · git:20260522.817c2c7 · 2026-05-22 · sha256 b68921296608c3be

release git:20260522.817c2c7A

Immutable. This exact content is served forever at /api/v1/blob/b68921296608c3be.

---
name: release
description: Step-by-step release process with versioning
---

# Release Process

## 1. Version Bump
- Update version in package.json / pom.xml / etc.
- Update CHANGELOG.md with new version section
- Commit: `chore: bump version to X.Y.Z`

## 2. Final Verification
- Run full test suite
- Run build process
- Smoke test critical paths

## 3. Create Release
- Tag: `git tag -a vX.Y.Z -m "Release X.Y.Z"`
- Push: `git push origin main --tags`

## 4. Post-Release
- Verify deployment (if auto-deploy)
- Monitor for issues
- Announce if needed