-
Notifications
You must be signed in to change notification settings - Fork 11
/
release-please-config.json
125 lines (125 loc) · 3.46 KB
/
release-please-config.json
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"exclude-paths": [".git", ".idea", ".github", ".vscode"],
"include-component-in-tag": true,
"include-v-in-tag": true,
"separate-pull-requests": false,
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"versioning": "prerelease",
"bootstrap-sha": "11d3cc3c83d24b03e3a9cd60ab8a3236bb03727f",
"packages": {
"packages/abstractions": {
"component": "microsoft-kiota-abstractions",
"release-type": "simple",
"changelog-path": "CHANGELOG.md",
"extra-files": [
{
"type": "toml",
"path": "pyproject.toml",
"jsonpath": "$.tool.poetry.version"
}
]
},
"packages/authentication/azure": {
"component": "microsoft-kiota-authentication-azure",
"release-type": "simple",
"changelog-path": "CHANGELOG.md",
"extra-files": [
{
"type": "toml",
"path": "pyproject.toml",
"jsonpath": "$.tool.poetry.version"
}
]
},
"packages/http/httpx": {
"component": "microsoft-kiota-http",
"release-type": "simple",
"changelog-path": "CHANGELOG.md",
"extra-files": [
{
"type": "toml",
"path": "pyproject.toml",
"jsonpath": "$.tool.poetry.version"
}
]
},
"packages/serialization/json": {
"component": "microsoft-kiota-serialization-json",
"release-type": "simple",
"changelog-path": "CHANGELOG.md",
"extra-files": [
{
"type": "toml",
"path": "pyproject.toml",
"jsonpath": "$.tool.poetry.version"
}
]
},
"packages/serialization/form": {
"component": "microsoft-kiota-serialization-form",
"release-type": "simple",
"changelog-path": "CHANGELOG.md",
"extra-files": [
{
"type": "toml",
"path": "pyproject.toml",
"jsonpath": "$.tool.poetry.version"
}
]
},
"packages/serialization/text": {
"component": "microsoft-kiota-serialization-text",
"release-type": "simple",
"changelog-path": "CHANGELOG.md",
"extra-files": [
{
"type": "toml",
"path": "pyproject.toml",
"jsonpath": "$.tool.poetry.version"
}
]
},
"packages/serialization/multipart": {
"component": "microsoft-kiota-serialization-multipart",
"release-type": "simple",
"changelog-path": "CHANGELOG.md",
"extra-files": [
{
"type": "toml",
"path": "pyproject.toml",
"jsonpath": "$.tool.poetry.version"
}
]
},
"packages/bundle": {
"component": "microsoft-kiota-bundle",
"release-type": "simple",
"changelog-path": "CHANGELOG.md",
"extra-files": [
{
"type": "toml",
"path": "pyproject.toml",
"jsonpath": "$.tool.poetry.version"
}
]
}
},
"plugins": [
{
"type": "linked-versions",
"groupName": "microsoft-kiota",
"components": [
"microsoft-kiota-abstractions",
"microsoft-kiota-authentication-azure",
"microsoft-kiota-http",
"microsoft-kiota-serialization-json",
"microsoft-kiota-serialization-form",
"microsoft-kiota-serialization-text",
"microsoft-kiota-serialization-multipart",
"microsoft-kiota-bundle"
]
}
],
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
}