diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7d67572f..103b0ad4 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,9 +1,9 @@ { ".": "0.0.0", - "tap_aggregator": "0.5.1", - "tap_core": "4.1.0", - "tap_integration_tests": "0.1.16", - "tap_eip712_message": "0.2.0", - "tap_graph": "0.3.0", - "tap_receipt": "1.1.0" + "tap_aggregator": "0.5.2", + "tap_core": "4.1.1", + "tap_integration_tests": "0.1.17", + "tap_eip712_message": "0.2.1", + "tap_graph": "0.3.1", + "tap_receipt": "1.1.1" } \ No newline at end of file diff --git a/tap_aggregator/CHANGELOG.md b/tap_aggregator/CHANGELOG.md index afc60dea..ab95e5fb 100644 --- a/tap_aggregator/CHANGELOG.md +++ b/tap_aggregator/CHANGELOG.md @@ -25,6 +25,21 @@ * tap_core bumped from 3.0.0 to 3.0.1 * tap_graph bumped from 0.1.0 to 0.2.0 +## [0.5.2](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_aggregator-v0.5.1...tap_aggregator-v0.5.2) (2025-05-09) + + +### Bug Fixes + +* **receipt:** update check for unique receipts in v1 and v2 ([cc8e00f](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/cc8e00f005dc8640f8db0ab230d9f3f5fd19a69c)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * tap_core bumped from 4.1.0 to 4.1.1 + * tap_graph bumped from 0.3.0 to 0.3.1 + ## [0.5.1](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_aggregator-v0.5.0...tap_aggregator-v0.5.1) (2025-04-22) diff --git a/tap_aggregator/Cargo.toml b/tap_aggregator/Cargo.toml index a44834a7..5f34d769 100644 --- a/tap_aggregator/Cargo.toml +++ b/tap_aggregator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tap_aggregator" -version = "0.5.1" +version = "0.5.2" edition.workspace = true license.workspace = true repository.workspace = true @@ -27,8 +27,8 @@ rdkafka.workspace = true serde.workspace = true serde_json.workspace = true strum.workspace = true -tap_core = { path = "../tap_core", version = "4.1.0" } -tap_graph = { version = "0.3.0", path = "../tap_graph", features = ["v2"] } +tap_core = { path = "../tap_core", version = "4.1.1" } +tap_graph = { version = "0.3.1", path = "../tap_graph", features = ["v2"] } thegraph-core = { workspace = true, features = ["alloy-eip712"] } tokio.workspace = true tonic.workspace = true diff --git a/tap_core/CHANGELOG.md b/tap_core/CHANGELOG.md index 858a1c23..1a96e861 100644 --- a/tap_core/CHANGELOG.md +++ b/tap_core/CHANGELOG.md @@ -4,6 +4,22 @@ * dependencies * tap_graph bumped from 0.1.0 to 0.2.0 +## [4.1.1](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v4.1.0...tap_core-v4.1.1) (2025-05-09) + + +### Bug Fixes + +* **eip712:** enhance receipt uniqueness verification ([0f5bb43](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0f5bb43e49d286441a239f882f658c570a0ed468)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * tap_eip712_message bumped from 0.2.0 to 0.2.1 + * tap_graph bumped from 0.3.0 to 0.3.1 + * tap_receipt bumped from 1.1.0 to 1.1.1 + ## [4.1.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v4.0.0...tap_core-v4.1.0) (2025-04-22) diff --git a/tap_core/Cargo.toml b/tap_core/Cargo.toml index 4d504e19..26cd5db4 100644 --- a/tap_core/Cargo.toml +++ b/tap_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tap_core" -version = "4.1.0" +version = "4.1.1" edition.workspace = true license.workspace = true repository.workspace = true @@ -11,9 +11,9 @@ description = "Core Timeline Aggregation Protocol library: a fast, efficient and anyhow.workspace = true async-trait.workspace = true rand.workspace = true -tap_eip712_message = { version = "0.2.0", path = "../tap_eip712_message" } -tap_graph = { version = "0.3.0", path = "../tap_graph", optional = true } -tap_receipt = { version = "1.1.0", path = "../tap_receipt" } +tap_eip712_message = { version = "0.2.1", path = "../tap_eip712_message" } +tap_graph = { version = "0.3.1", path = "../tap_graph", optional = true } +tap_receipt = { version = "1.1.1", path = "../tap_receipt" } thegraph-core.workspace = true thiserror.workspace = true tokio.workspace = true diff --git a/tap_eip712_message/CHANGELOG.md b/tap_eip712_message/CHANGELOG.md index b58d1f8e..3a6deb5d 100644 --- a/tap_eip712_message/CHANGELOG.md +++ b/tap_eip712_message/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.1](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_eip712_message-v0.2.0...tap_eip712_message-v0.2.1) (2025-05-09) + + +### Bug Fixes + +* **eip712:** enhance receipt uniqueness verification ([0f5bb43](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0f5bb43e49d286441a239f882f658c570a0ed468)) + ## [0.2.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_eip712_message-v0.1.0...tap_eip712_message-v0.2.0) (2025-04-22) diff --git a/tap_eip712_message/Cargo.toml b/tap_eip712_message/Cargo.toml index 3fb2b327..99bba2d7 100644 --- a/tap_eip712_message/Cargo.toml +++ b/tap_eip712_message/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tap_eip712_message" -version = "0.2.0" +version = "0.2.1" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/tap_graph/CHANGELOG.md b/tap_graph/CHANGELOG.md index f5fc8228..2f9ce3de 100644 --- a/tap_graph/CHANGELOG.md +++ b/tap_graph/CHANGELOG.md @@ -4,6 +4,11 @@ * dependencies * tap_receipt bumped from 0.1.0 to 1.0.0 +* The following workspace dependencies were updated + * dependencies + * tap_eip712_message bumped from 0.2.0 to 0.2.1 + * tap_receipt bumped from 1.1.0 to 1.1.1 + ## [0.3.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_graph-v0.2.1...tap_graph-v0.3.0) (2025-04-22) diff --git a/tap_graph/Cargo.toml b/tap_graph/Cargo.toml index 63cf2e22..6d11a79b 100644 --- a/tap_graph/Cargo.toml +++ b/tap_graph/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tap_graph" -version = "0.3.0" +version = "0.3.1" edition.workspace = true license.workspace = true repository.workspace = true @@ -9,8 +9,8 @@ description = "The Graph TAP receipt structs" [dependencies] rand.workspace = true serde.workspace = true -tap_eip712_message = { version = "0.2.0", path = "../tap_eip712_message" } -tap_receipt = { version = "1.1.0", path = "../tap_receipt" } +tap_eip712_message = { version = "0.2.1", path = "../tap_eip712_message" } +tap_receipt = { version = "1.1.1", path = "../tap_receipt" } thegraph-core.workspace = true diff --git a/tap_integration_tests/Cargo.toml b/tap_integration_tests/Cargo.toml index 03c20dae..809fcfb3 100644 --- a/tap_integration_tests/Cargo.toml +++ b/tap_integration_tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tap_integration_tests" -version = "0.1.16" +version = "0.1.17" edition.workspace = true license.workspace = true repository.workspace = true @@ -10,7 +10,7 @@ publish = false [dependencies] tap_aggregator = { path = "../tap_aggregator" } -tap_core = { path = "../tap_core", version = "4.1.0" } +tap_core = { path = "../tap_core", version = "4.1.1" } tap_graph = { path = "../tap_graph" } anyhow.workspace = true diff --git a/tap_receipt/CHANGELOG.md b/tap_receipt/CHANGELOG.md index 4b622eea..9aee5009 100644 --- a/tap_receipt/CHANGELOG.md +++ b/tap_receipt/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.1.1](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_receipt-v1.1.0...tap_receipt-v1.1.1) (2025-05-09) + + +### Bug Fixes + +* **eip712:** enhance receipt uniqueness verification ([0f5bb43](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0f5bb43e49d286441a239f882f658c570a0ed468)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * tap_eip712_message bumped from 0.2.0 to 0.2.1 + ## [1.1.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_receipt-v1.0.0...tap_receipt-v1.1.0) (2025-04-22) diff --git a/tap_receipt/Cargo.toml b/tap_receipt/Cargo.toml index 97838abe..d2697cb3 100644 --- a/tap_receipt/Cargo.toml +++ b/tap_receipt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tap_receipt" -version = "1.1.0" +version = "1.1.1" edition.workspace = true license.workspace = true repository.workspace = true @@ -11,7 +11,7 @@ anyhow.workspace = true anymap3.workspace = true async-trait.workspace = true serde.workspace = true -tap_eip712_message = { version = "0.2.0", path = "../tap_eip712_message" } +tap_eip712_message = { version = "0.2.1", path = "../tap_eip712_message" } thegraph-core.workspace = true thiserror.workspace = true