This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
release-please-config.json
97 lines (97 loc) · 2.16 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
{
"release-type": "rust",
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
"group-pull-request-title-pattern": "chore: Release ${version}",
"packages": {
".": {
"release-type": "simple",
"component": "root",
"extra-files": [
{
"type": "toml",
"path": "Cargo.toml",
"jsonpath": "$.workspace.dependencies.acir.version"
},
{
"type": "toml",
"path": "Cargo.toml",
"jsonpath": "$.workspace.dependencies.acir_field.version"
},
{
"type": "toml",
"path": "Cargo.toml",
"jsonpath": "$.workspace.dependencies.stdlib.version"
},
{
"type": "toml",
"path": "Cargo.toml",
"jsonpath": "$.workspace.dependencies.brillig.version"
},
{
"type": "toml",
"path": "Cargo.toml",
"jsonpath": "$.workspace.dependencies.brillig_vm.version"
},
{
"type": "toml",
"path": "Cargo.toml",
"jsonpath": "$.workspace.dependencies.acvm_blackbox_solver.version"
},
{
"type": "json",
"path": "acvm_js/package.json",
"jsonpath": "$.version"
}
]
},
"acir": {
"component": "acir"
},
"acir_field": {
"component": "acir_field"
},
"acvm": {
"component": "acvm"
},
"acvm_js": {
"component": "acvm_js"
},
"brillig": {
"component": "brillig"
},
"brillig_vm": {
"component": "brillig_vm"
},
"stdlib": {
"component": "acvm_stdlib"
},
"blackbox_solver": {
"component": "acvm_blackbox_solver"
},
"barretenberg_blackbox_solver": {
"component": "barretenberg_blackbox_solver"
}
},
"plugins": [
{
"type": "cargo-workspace",
"merge": false
},
{
"type": "linked-versions",
"groupName": "acvm",
"components": [
"root",
"acir",
"acir_field",
"acvm",
"acvm_js",
"brillig",
"brillig_vm",
"acvm_stdlib",
"acvm_blackbox_solver"
]
}
]
}