Follow this checklist when releasing a new version of Lambda Lang:
-
src/atoms.json— Update version and changelog -
src/lambda_lang.py— Python translator -
src/go/lambda.go— Go translator -
src/roundtrip_test.py— Add/update tests
cd src && python3 roundtrip_test.pyEnsure all tests pass.
-
SKILL.md— Update version number and changelog -
README.md— Update status, changelog, and relevant sections
git add -A
git commit -m "release: vX.Y.Z - Description"
git push origin mainclawhub publish /path/to/lambda-lang --version X.Y.Z --changelog "Description"# Via API or GitHub UI
# Tag: vX.Y.Z
# Title: vX.Y.Z - Short description
# Body: Detailed changelog| Step | Done |
|---|---|
| atoms.json version updated | ☐ |
| Python translator updated | ☐ |
| Go translator updated | ☐ |
| Tests passing | ☐ |
| SKILL.md updated | ☐ |
| README.md updated | ☐ |
| Git commit pushed | ☐ |
| ClawHub published | ☐ |
| GitHub Release created | ☐ |
Last updated: v1.8.0 (2026-02-17)