Skip to content

Commit 80c57dd

Browse files
fix: update release-please config to handle alpha versions properly
- Add include-component-in-tag for proper tag naming - Update changelog sections to use simple text format - Add prerelease configuration for alpha versions - Include versioning strategy for prerelease handling
1 parent a94c97b commit 80c57dd

File tree

1 file changed

+30
-18
lines changed

1 file changed

+30
-18
lines changed

release-please-config.json

Lines changed: 30 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,43 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"include-component-in-tag": true,
34
"changelog-sections": [
4-
{ "type": "feat", "section": "🚀 Features", "hidden": false },
5-
{ "type": "change", "section": "🚀 Features", "hidden": false },
6-
{ "type": "deprecate", "section": "⚠️ Changes", "hidden": false },
7-
{ "type": "remove", "section": "⚠️ Changes", "hidden": false },
8-
{ "type": "fix", "section": "🐞 Bug Fixes", "hidden": false },
9-
{ "type": "revert", "section": "🐞 Bug Fixes", "hidden": false },
10-
{ "type": "security", "section": "🐞 Bug Fixes", "hidden": false },
11-
{ "type": "perf", "section": "✨ Polish", "hidden": false },
12-
{ "type": "refactor", "section": "✨ Polish", "hidden": false },
13-
{ "type": "style", "section": "✨ Polish", "hidden": false },
14-
{ "type": "build", "section": "🧰 Other", "hidden": false },
15-
{ "type": "chore", "section": "🧰 Other", "hidden": false },
16-
{ "type": "deps", "section": "🧰 Other", "hidden": true },
17-
{ "type": "ci", "section": "🧰 Other", "hidden": true },
18-
{ "type": "test", "section": "🧪 Tests", "hidden": false },
19-
{ "type": "docs", "section": "📚 Documentation", "hidden": true }
5+
{ "type": "feat", "section": "Added", "hidden": false },
6+
7+
{ "type": "fix", "section": "Changed", "hidden": false },
8+
{ "type": "change", "section": "Changed", "hidden": false },
9+
{ "type": "deprecate", "section": "Changed", "hidden": false },
10+
{ "type": "revert", "section": "Changed", "hidden": false },
11+
{ "type": "security", "section": "Changed", "hidden": false },
12+
{ "type": "perf", "section": "Changed", "hidden": false },
13+
{ "type": "refactor", "section": "Changed", "hidden": false },
14+
15+
{ "type": "remove", "section": "Removed", "hidden": false },
16+
17+
{ "type": "style", "section": "Misc", "hidden": true },
18+
{ "type": "build", "section": "Misc", "hidden": true },
19+
{ "type": "chore", "section": "Misc", "hidden": true },
20+
{ "type": "test", "section": "Misc", "hidden": true },
21+
{ "type": "deps", "section": "Misc", "hidden": true },
22+
{ "type": "ci", "section": "Misc", "hidden": true },
23+
{ "type": "docs", "section": "Misc", "hidden": true }
2024
],
2125
"packages": {
2226
".": {
2327
"release-type": "node",
24-
"changelog-path": "CHANGELOG.md"
28+
"changelog-path": "CHANGELOG.md",
29+
"include-v-in-tag": true,
30+
"prerelease": true,
31+
"prerelease-type": "alpha",
32+
"versioning": "prerelease"
2533
},
2634
"dapp": {
2735
"release-type": "node",
28-
"changelog-path": "dapp/CHANGELOG.md"
36+
"changelog-path": "dapp/CHANGELOG.md",
37+
"include-v-in-tag": true,
38+
"prerelease": true,
39+
"prerelease-type": "alpha",
40+
"versioning": "prerelease"
2941
}
3042
}
3143
}

0 commit comments

Comments
 (0)