Skip to content

Commit

Permalink
ci: update release-please publish packages
Browse files Browse the repository at this point in the history
Signed-off-by: Gustavo Inacio <[email protected]>
  • Loading branch information
gusinacio committed Jan 28, 2025
1 parent c70bec1 commit 7024558
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
3 changes: 3 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"draft": false,
"packages": {
"tap_core": {},
"tap_graph": {},
"tap_eip712_message": {},
"tap_receipt": {},
"tap_aggregator": {
"bump-minor-pre-major": true,
"bump-patch-for-minor-pre-major": true,
Expand Down
2 changes: 1 addition & 1 deletion tap_aggregator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ tokio.workspace = true
tonic = { version = "0.12.3", features = ["transport", "zstd"] }
tower = { version = "0.5.2", features = ["util", "steer"] }
tracing-subscriber = "0.3.17"
tap_graph = { path = "../tap_graph" }
tap_graph = { version = "0.1.0", path = "../tap_graph" }

[build-dependencies]
tonic-build = "0.12.3"
Expand Down
6 changes: 3 additions & 3 deletions tap_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ rand.workspace = true
serde.workspace = true
thiserror.workspace = true
tokio.workspace = true
tap_receipt = { path = "../tap_receipt" }
tap_eip712_message = { path = "../tap_eip712_message" }
tap_graph = { path = "../tap_graph", optional = true }
tap_receipt = { version = "0.1.0", path = "../tap_receipt" }
tap_eip712_message = { version = "0.1.0", path = "../tap_eip712_message" }
tap_graph = { version = "0.1.0", path = "../tap_graph", optional = true }

[dev-dependencies]
criterion = { version = "0.5.1", features = ["async_std"] }
Expand Down
3 changes: 2 additions & 1 deletion tap_eip712_message/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[package]
name = "tap_eip712_message"
version.workspace = true
version = "0.1.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "EIP712 singed messages used by TAP"

[dependencies]
alloy.workspace = true
Expand Down
7 changes: 4 additions & 3 deletions tap_graph/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
[package]
name = "tap_graph"
version.workspace = true
version = "0.1.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "The Graph TAP receipt structs"

[dependencies]
alloy.workspace = true
serde.workspace = true
rand.workspace = true
thiserror.workspace = true
tap_eip712_message = { path = "../tap_eip712_message" }
tap_receipt = { path = "../tap_receipt" }
tap_eip712_message = { version = "0.1.0", path = "../tap_eip712_message" }
tap_receipt = { version = "0.1.0", path = "../tap_receipt" }


[dev-dependencies]
Expand Down
5 changes: 3 additions & 2 deletions tap_receipt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[package]
name = "tap_receipt"
version.workspace = true
version = "0.1.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "TAP Receipt states and checks"

[dependencies]
alloy.workspace = true
Expand All @@ -12,7 +13,7 @@ anymap3 = "1.0.1"
thiserror.workspace = true
serde.workspace = true
async-trait = "0.1.85"
tap_eip712_message = { path = "../tap_eip712_message" }
tap_eip712_message = { version = "0.1.0", path = "../tap_eip712_message" }

[dev-dependencies]
tokio.workspace = true

0 comments on commit 7024558

Please sign in to comment.