Skip to content

Commit 8bb7893

Browse files
committed
Add a component for prover in release-please
1 parent cd6d1c5 commit 8bb7893

File tree

3 files changed

+16
-6
lines changed

3 files changed

+16
-6
lines changed

.github/release-please/config.json

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,28 @@
22
"bump-minor-pre-major": true,
33
"bump-patch-for-minor-pre-major": true,
44
"release-type": "simple",
5-
"include-component-in-tag": false,
5+
"include-component-in-tag": true,
66
"group-pull-request-title-pattern": "chore: release ${component} ${version}",
77
"packages": {
8-
"proof_verifier_js/ts": {
9-
"component": "@ethproofs-airbender-verifier",
8+
"proof_verifier_js": {
9+
"component": "ethproofs-airbender-verifier",
1010
"extra-files": [
1111
{
1212
"type": "json",
13-
"path": "package.json",
13+
"path": "ts/package.json",
1414
"jsonpath": "$.version"
1515
}
1616
]
17+
},
18+
"ethereum_prover": {
19+
"component": "ethereum-prover",
20+
"extra-files": [
21+
{
22+
"type": "toml",
23+
"path": "Cargo.toml",
24+
"jsonpath": "$.package.version"
25+
}
26+
]
1727
}
1828
}
1929
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"proof_verifier_js/ts": "0.1.1"
2+
"proof_verifier_js": "0.1.1"
33
}

ethereum_prover/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ethereum_prover"
3-
version.workspace = true
3+
version = "0.1.0"
44
edition.workspace = true
55
authors.workspace = true
66
homepage.workspace = true

0 commit comments

Comments
 (0)