Skip to content

Commit 70c3ce2

Browse files
committed
ci: update release-please publish packages
Signed-off-by: Gustavo Inacio <[email protected]>
1 parent c70bec1 commit 70c3ce2

File tree

5 files changed

+16
-10
lines changed

5 files changed

+16
-10
lines changed

release-please-config.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
"draft": false,
55
"packages": {
66
"tap_core": {},
7+
"tap_graph": {},
8+
"tap_eip712_message": {},
9+
"tap_receipt": {},
710
"tap_aggregator": {
811
"bump-minor-pre-major": true,
912
"bump-patch-for-minor-pre-major": true,

tap_core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ rand.workspace = true
1515
serde.workspace = true
1616
thiserror.workspace = true
1717
tokio.workspace = true
18-
tap_receipt = { path = "../tap_receipt" }
19-
tap_eip712_message = { path = "../tap_eip712_message" }
20-
tap_graph = { path = "../tap_graph", optional = true }
18+
tap_receipt = { version = "0.1.0", path = "../tap_receipt" }
19+
tap_eip712_message = { version = "0.1.0", path = "../tap_eip712_message" }
20+
tap_graph = { version = "0.1.0", path = "../tap_graph", optional = true }
2121

2222
[dev-dependencies]
2323
criterion = { version = "0.5.1", features = ["async_std"] }

tap_eip712_message/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[package]
22
name = "tap_eip712_message"
3-
version.workspace = true
3+
version = "0.1.0"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true
7+
description = "EIP712 singed messages used by TAP"
78

89
[dependencies]
910
alloy.workspace = true
@@ -12,4 +13,4 @@ thiserror.workspace = true
1213

1314

1415
[dev-dependencies]
15-
msg = { path = "../tap_graph", package = "tap_graph" }
16+
msg = { version = "0.1.0", path = "../tap_graph", package = "tap_graph" }

tap_graph/Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
[package]
22
name = "tap_graph"
3-
version.workspace = true
3+
version = "0.1.0"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true
7+
description = "The Graph TAP receipt structs"
78

89
[dependencies]
910
alloy.workspace = true
1011
serde.workspace = true
1112
rand.workspace = true
1213
thiserror.workspace = true
13-
tap_eip712_message = { path = "../tap_eip712_message" }
14-
tap_receipt = { path = "../tap_receipt" }
14+
tap_eip712_message = { version = "0.1.0", path = "../tap_eip712_message" }
15+
tap_receipt = { version = "0.1.0", path = "../tap_receipt" }
1516

1617

1718
[dev-dependencies]

tap_receipt/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[package]
22
name = "tap_receipt"
3-
version.workspace = true
3+
version = "0.1.0"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true
7+
description = "TAP Receipt states and checks"
78

89
[dependencies]
910
alloy.workspace = true
@@ -12,7 +13,7 @@ anymap3 = "1.0.1"
1213
thiserror.workspace = true
1314
serde.workspace = true
1415
async-trait = "0.1.85"
15-
tap_eip712_message = { path = "../tap_eip712_message" }
16+
tap_eip712_message = { version = "0.1.0", path = "../tap_eip712_message" }
1617

1718
[dev-dependencies]
1819
tokio.workspace = true

0 commit comments

Comments
 (0)