-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathrelease-please-config.json
More file actions
85 lines (84 loc) · 2.72 KB
/
release-please-config.json
File metadata and controls
85 lines (84 loc) · 2.72 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
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"bump-minor-pre-major": true,
"pull-request-footer": "> **Post-release reminder:** After merging this PR, remember to update internal version registries with the new version numbers.",
"plugins": ["cargo-workspace"],
"packages": {
"confidence-resolver": {
"path": "confidence-resolver",
"release-type": "rust",
"changelog-path": "CHANGELOG.md",
"initial-version": "0.1.0",
"extra-files": ["src/version.rs"]
},
"confidence-cloudflare-resolver": {
"path": "confidence-cloudflare-resolver",
"release-type": "rust",
"changelog-path": "CHANGELOG.md",
"initial-version": "0.1.0"
},
"wasm-msg": {
"path": "wasm-msg",
"release-type": "rust",
"changelog-path": "CHANGELOG.md",
"initial-version": "0.1.0"
},
"rust-guest": {
"path": "wasm/rust-guest",
"release-type": "rust",
"changelog-path": "CHANGELOG.md",
"initial-version": "0.1.0"
},
"openfeature-provider/java": {
"path": "openfeature-provider/java",
"release-type": "rust",
"changelog-path": "CHANGELOG.md",
"extra-files": [
{
"type": "pom",
"path": "pom.xml"
},
"README.md",
"src/main/java/com/spotify/confidence/sdk/Version.java"
]
},
"openfeature-provider/js": {
"path": "openfeature-provider/js",
"release-type": "rust",
"changelog-path": "CHANGELOG.md",
"extra-files": ["package.json", "src/version.ts"]
},
"openfeature-provider/go": {
"path": "openfeature-provider/go",
"release-type": "rust",
"changelog-path": "CHANGELOG.md",
"include-component-in-tag": true,
"component": "openfeature-provider/go",
"tag-separator": "/",
"extra-files": ["confidence/version.go"],
"exclude-paths": ["confidence/internal/local_resolver/assets/confidence_resolver.wasm"]
},
"openfeature-provider/ruby": {
"release-type": "ruby",
"changelog-path": "CHANGELOG.md",
"component": "openfeature-provider/ruby",
"extra-files": [
"lib/confidence/openfeature/version.rb"
]
},
"openfeature-provider/rust": {
"path": "openfeature-provider/rust",
"release-type": "rust",
"changelog-path": "CHANGELOG.md",
"component": "openfeature-provider/rust",
"initial-version": "0.1.0",
"extra-files": ["src/version.rs"]
},
"openfeature-provider/python": {
"path": "openfeature-provider/python",
"release-type": "rust",
"changelog-path": "CHANGELOG.md",
"extra-files": ["pyproject.toml", "src/confidence/version.py"]
}
}
}