Files
claude-engineering-plugin/.github/release-please-config.json
Trevin Chow 0bd29c7f2e fix(release): align cli and compound-engineering versions with linked-versions plugin
Add release-please linked-versions plugin so cli and compound-engineering
always bump together. Align compound-engineering version to 2.58.0 to
match cli. Previously they diverged at v2.54.0 when commits touched only
one package's path.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-28 13:14:49 -07:00

81 lines
1.9 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"include-component-in-tag": true,
"release-search-depth": 20,
"commit-search-depth": 50,
"plugins": [
{
"type": "linked-versions",
"groupName": "compound-engineering",
"components": ["cli", "compound-engineering"]
}
],
"packages": {
".": {
"release-type": "simple",
"package-name": "cli",
"extra-files": [
{
"type": "json",
"path": "package.json",
"jsonpath": "$.version"
}
]
},
"plugins/compound-engineering": {
"release-type": "simple",
"package-name": "compound-engineering",
"extra-files": [
{
"type": "json",
"path": ".claude-plugin/plugin.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": ".cursor-plugin/plugin.json",
"jsonpath": "$.version"
}
]
},
"plugins/coding-tutor": {
"release-type": "simple",
"package-name": "coding-tutor",
"extra-files": [
{
"type": "json",
"path": ".claude-plugin/plugin.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": ".cursor-plugin/plugin.json",
"jsonpath": "$.version"
}
]
},
".claude-plugin": {
"release-type": "simple",
"package-name": "marketplace",
"extra-files": [
{
"type": "json",
"path": "marketplace.json",
"jsonpath": "$.metadata.version"
}
]
},
".cursor-plugin": {
"release-type": "simple",
"package-name": "cursor-marketplace",
"extra-files": [
{
"type": "json",
"path": "marketplace.json",
"jsonpath": "$.metadata.version"
}
]
}
}
}