Files
alexsjones--llmfit/release-please-config.json
Alex Jones cc715d1b9e chore: slow release cadence — patch bumps by default
Post-1.1.0, feat commits no longer drive minor bumps on every release:
versioning switches to always-bump-patch, so the next release is 1.1.1
regardless of commit types. Minor/major releases become deliberate
decisions via a Release-As footer (same mechanism used to cut 1.0.0).

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-10 11:41:55 +01:00

27 lines
706 B
JSON

{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"packages": {
".": {
"release-type": "simple",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"tag-separator": "",
"include-v-in-tag": true,
"changelog-path": "CHANGELOG.md",
"versioning": "always-bump-patch",
"extra-files": [
{
"type": "toml",
"path": "Cargo.toml",
"jsonpath": "$.workspace.package.version"
},
{
"type": "toml",
"path": "llmfit-tui/Cargo.toml",
"jsonpath": "$.dependencies.llmfit-core.version"
}
]
}
}
}