From ade8aa44bc2c2bc44474e2a0223a077427f44178 Mon Sep 17 00:00:00 2001 From: "semiotic-labs-pr-automation[bot]" <138054206+semiotic-labs-pr-automation[bot]@users.noreply.github.com> Date: Tue, 28 Jan 2025 19:18:47 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 9 ++++++--- tap_aggregator/CHANGELOG.md | 24 ++++++++++++++++++++++++ tap_aggregator/Cargo.toml | 4 ++-- tap_core/CHANGELOG.md | 19 +++++++++++++++++++ tap_core/Cargo.toml | 2 +- tap_eip712_message/CHANGELOG.md | 14 ++++++++++++++ tap_graph/CHANGELOG.md | 14 ++++++++++++++ tap_integration_tests/Cargo.toml | 4 ++-- tap_receipt/CHANGELOG.md | 14 ++++++++++++++ 9 files changed, 96 insertions(+), 8 deletions(-) create mode 100644 tap_eip712_message/CHANGELOG.md create mode 100644 tap_graph/CHANGELOG.md create mode 100644 tap_receipt/CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ad167582..9ee95a93 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,9 @@ { ".": "0.0.0", - "tap_aggregator": "0.3.3", - "tap_core": "2.0.0", - "tap_integration_tests": "0.1.12" + "tap_aggregator": "0.4.0", + "tap_core": "3.0.0", + "tap_integration_tests": "0.1.13", + "tap_eip712_message": "0.1.0", + "tap_graph": "0.1.0", + "tap_receipt": "0.1.0" } \ No newline at end of file diff --git a/tap_aggregator/CHANGELOG.md b/tap_aggregator/CHANGELOG.md index bcb6a4f4..d7ed3b8b 100644 --- a/tap_aggregator/CHANGELOG.md +++ b/tap_aggregator/CHANGELOG.md @@ -20,6 +20,30 @@ * dependencies * tap_core bumped from * to 2.0.0 +## [0.4.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_aggregator-v0.3.3...tap_aggregator-v0.4.0) (2025-01-28) + + +### ⚠ BREAKING CHANGES + +* rename EIP712SignedMessage to Eip712SignedMessage +* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268)) +* make manager generic over rav ([#267](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/267)) +* manager generic over receipt ([#266](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/266)) + +### Code Refactoring + +* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268)) ([3d35cac](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/3d35cac73159a89125051b5148a88efc63eb2193)) +* make manager generic over rav ([#267](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/267)) ([1fc51a3](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/1fc51a3ff9ce74027b47a0e6d026a5bedd9ca00c)) +* manager generic over receipt ([#266](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/266)) ([25a3316](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/25a3316abd8596c3d5081d6b8f0507034c60d2a4)) +* rename EIP712SignedMessage to Eip712SignedMessage ([0b0b59e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0b0b59e380c9e2f04da2b28c26ccd0202f15a4a8)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * tap_core bumped from 2.0.0 to 3.0.0 + ## [0.3.3](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_aggregator-v0.3.2...tap_aggregator-v0.3.3) (2024-12-27) diff --git a/tap_aggregator/Cargo.toml b/tap_aggregator/Cargo.toml index ce1452a3..2138912f 100644 --- a/tap_aggregator/Cargo.toml +++ b/tap_aggregator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tap_aggregator" -version = "0.3.3" +version = "0.4.0" edition.workspace = true license.workspace = true repository.workspace = true @@ -34,7 +34,7 @@ rayon = "1.10.0" serde.workspace = true serde_json.workspace = true strum = { version = "0.26.3", features = ["derive"] } -tap_core = { path = "../tap_core", version = "2.0.0" } +tap_core = { path = "../tap_core", version = "3.0.0" } tokio.workspace = true tonic = { version = "0.12.3", features = ["transport", "zstd"] } tower = { version = "0.5.2", features = ["util", "steer"] } diff --git a/tap_core/CHANGELOG.md b/tap_core/CHANGELOG.md index f8e301e9..b86ad7fb 100644 --- a/tap_core/CHANGELOG.md +++ b/tap_core/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [3.0.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v2.0.0...tap_core-v3.0.0) (2025-01-28) + + +### ⚠ BREAKING CHANGES + +* rename EIP712SignedMessage to Eip712SignedMessage +* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268)) +* make manager generic over rav ([#267](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/267)) +* manager generic over receipt ([#266](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/266)) +* remove unused escrow handler methods ([#264](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/264)) + +### Code Refactoring + +* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268)) ([3d35cac](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/3d35cac73159a89125051b5148a88efc63eb2193)) +* make manager generic over rav ([#267](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/267)) ([1fc51a3](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/1fc51a3ff9ce74027b47a0e6d026a5bedd9ca00c)) +* manager generic over receipt ([#266](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/266)) ([25a3316](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/25a3316abd8596c3d5081d6b8f0507034c60d2a4)) +* remove unused escrow handler methods ([#264](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/264)) ([e5511ff](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/e5511ff7a5cc4753782f718f4517a0a0a8d9db56)) +* rename EIP712SignedMessage to Eip712SignedMessage ([0b0b59e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0b0b59e380c9e2f04da2b28c26ccd0202f15a4a8)) + ## [2.0.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v1.0.0...tap_core-v2.0.0) (2024-10-30) diff --git a/tap_core/Cargo.toml b/tap_core/Cargo.toml index 886719ad..84e769f1 100644 --- a/tap_core/Cargo.toml +++ b/tap_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tap_core" -version = "2.0.0" +version = "3.0.0" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/tap_eip712_message/CHANGELOG.md b/tap_eip712_message/CHANGELOG.md new file mode 100644 index 00000000..141ad103 --- /dev/null +++ b/tap_eip712_message/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +## 0.1.0 (2025-01-28) + + +### ⚠ BREAKING CHANGES + +* rename EIP712SignedMessage to Eip712SignedMessage +* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268)) + +### Code Refactoring + +* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268)) ([3d35cac](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/3d35cac73159a89125051b5148a88efc63eb2193)) +* rename EIP712SignedMessage to Eip712SignedMessage ([0b0b59e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0b0b59e380c9e2f04da2b28c26ccd0202f15a4a8)) diff --git a/tap_graph/CHANGELOG.md b/tap_graph/CHANGELOG.md new file mode 100644 index 00000000..141ad103 --- /dev/null +++ b/tap_graph/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +## 0.1.0 (2025-01-28) + + +### ⚠ BREAKING CHANGES + +* rename EIP712SignedMessage to Eip712SignedMessage +* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268)) + +### Code Refactoring + +* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268)) ([3d35cac](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/3d35cac73159a89125051b5148a88efc63eb2193)) +* rename EIP712SignedMessage to Eip712SignedMessage ([0b0b59e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0b0b59e380c9e2f04da2b28c26ccd0202f15a4a8)) diff --git a/tap_integration_tests/Cargo.toml b/tap_integration_tests/Cargo.toml index 6be70440..f8f33b99 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.12" +version = "0.1.13" 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 = "2.0.0" } +tap_core = { path = "../tap_core", version = "3.0.0" } rand.workspace = true anyhow.workspace = true tokio.workspace = true diff --git a/tap_receipt/CHANGELOG.md b/tap_receipt/CHANGELOG.md new file mode 100644 index 00000000..141ad103 --- /dev/null +++ b/tap_receipt/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +## 0.1.0 (2025-01-28) + + +### ⚠ BREAKING CHANGES + +* rename EIP712SignedMessage to Eip712SignedMessage +* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268)) + +### Code Refactoring + +* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268)) ([3d35cac](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/3d35cac73159a89125051b5148a88efc63eb2193)) +* rename EIP712SignedMessage to Eip712SignedMessage ([0b0b59e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0b0b59e380c9e2f04da2b28c26ccd0202f15a4a8))