-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathrelease-please-config.json
More file actions
58 lines (58 loc) · 2.04 KB
/
Copy pathrelease-please-config.json
File metadata and controls
58 lines (58 loc) · 2.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"packages": {
".": {
"release-type": "simple",
"versioning": "prerelease",
"prerelease": true,
"prerelease-type": "dev",
"package-name": "flutter-mcp-toolkit",
"changelog-path": "CHANGELOG.md",
"version-file": "VERSION",
"include-component-in-tag": false,
"pull-request-title-pattern": "chore${scope}: release ${version}",
"changelog-sections": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "perf", "section": "Performance" },
{ "type": "docs", "section": "Documentation" },
{ "type": "chore", "section": "Miscellaneous", "hidden": true },
{ "type": "refactor", "section": "Miscellaneous", "hidden": true },
{ "type": "test", "section": "Miscellaneous", "hidden": true }
],
"extra-files": [
"plugin/EXPECTED_SERVER_VERSION",
{
"type": "json",
"path": "plugin/.cursor-plugin/plugin.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": "plugin/.codex-plugin/plugin.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": "plugin/.claude-plugin/plugin.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": ".claude-plugin/marketplace.json",
"jsonpath": "$.plugins[0].version"
},
"packages/core/lib/src/runtime_version.dart",
"packages/server_capability_core/lib/src/fmt_capability.dart",
"mcp_server_dart/pubspec.yaml",
"mcp_toolkit/pubspec.yaml",
"packages/core/pubspec.yaml",
"packages/server_capability_kernel/pubspec.yaml",
"packages/server_capability_core/pubspec.yaml",
"packages/core/README.md",
"packages/server_capability_kernel/README.md",
"packages/server_capability_core/README.md"
]
}
}
}