forked from langchain-ai/deepagents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease-please-config.json
More file actions
170 lines (170 loc) · 4.95 KB
/
release-please-config.json
File metadata and controls
170 lines (170 loc) · 4.95 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"skip-github-release": true,
"draft-pull-request": true,
"separate-pull-requests": true,
"changelog-sections": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverted Changes"
},
{
"type": "docs",
"section": "Documentation",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "chore",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "test",
"hidden": true
},
{
"type": "ci",
"hidden": true
},
{
"type": "hotfix",
"hidden": true
}
],
"pull-request-title-pattern": "release(${component}): ${version}",
"component-no-space": true,
"pull-request-header": "> [!CAUTION]\n> Merging this PR will automatically publish to **PyPI** and create a **GitHub release**.\n\nFor the full release process, see [`.github/RELEASING.md`](https://github.com/langchain-ai/deepagents/blob/main/.github/RELEASING.md).\n\n---\n\n_Everything below this line will be the GitHub release body._\n",
"pull-request-footer": "\n_Everything above this line will be the GitHub release body._\n\n---\n\n> [!NOTE]\n> A **New Contributors** section is appended to the GitHub release notes automatically at publish time (see [Release Pipeline](https://github.com/langchain-ai/deepagents/blob/main/.github/RELEASING.md#release-pipeline), step 2).",
"packages": {
"libs/cli": {
"release-type": "python",
"package-name": "deepagents-cli",
"component": "deepagents-cli",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"extra-files": [
"pyproject.toml",
"deepagents_cli/_version.py"
],
"changelog-path": "CHANGELOG.md"
},
"libs/deepagents": {
"release-type": "python",
"package-name": "deepagents",
"component": "deepagents",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"extra-files": [
"pyproject.toml",
"deepagents/_version.py"
],
"changelog-path": "CHANGELOG.md"
},
"libs/acp": {
"release-type": "python",
"package-name": "deepagents-acp",
"component": "deepagents-acp",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"extra-files": [
"pyproject.toml",
"deepagents_acp/_version.py"
],
"changelog-path": "CHANGELOG.md"
},
"libs/code": {
"release-type": "python",
"package-name": "deepagents-code",
"component": "deepagents-code",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"extra-files": [
"pyproject.toml",
"deepagents_code/_version.py"
],
"changelog-path": "CHANGELOG.md"
},
"libs/partners/daytona": {
"release-type": "python",
"package-name": "langchain-daytona",
"component": "langchain-daytona",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"extra-files": [
"pyproject.toml",
"langchain_daytona/_version.py"
],
"changelog-path": "CHANGELOG.md"
},
"libs/partners/modal": {
"release-type": "python",
"package-name": "langchain-modal",
"component": "langchain-modal",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"extra-files": [
"pyproject.toml",
"langchain_modal/_version.py"
],
"changelog-path": "CHANGELOG.md"
},
"libs/partners/runloop": {
"release-type": "python",
"package-name": "langchain-runloop",
"component": "langchain-runloop",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"extra-files": [
"pyproject.toml",
"langchain_runloop/_version.py"
],
"changelog-path": "CHANGELOG.md"
},
"libs/partners/quickjs": {
"release-type": "python",
"package-name": "langchain-quickjs",
"component": "langchain-quickjs",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"extra-files": [
"pyproject.toml",
"langchain_quickjs/_version.py"
],
"changelog-path": "CHANGELOG.md"
},
"libs/repl": {
"release-type": "python",
"package-name": "langchain-repl",
"component": "langchain-repl",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"extra-files": [
"pyproject.toml",
"langchain_repl/_version.py"
],
"changelog-path": "CHANGELOG.md"
}
},
"tag-separator": "==",
"include-component-in-tag": true,
"include-v-in-tag": false
}