From ab13d273787e281f632b3510d4af36fa5b177eaf Mon Sep 17 00:00:00 2001 From: "semiotic-labs-pr-automation[bot]" <138054206+semiotic-labs-pr-automation[bot]@users.noreply.github.com> Date: Thu, 23 Nov 2023 23:28:38 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 6 +++--- tap_aggregator/CHANGELOG.md | 18 ++++++++++++++++++ tap_aggregator/Cargo.toml | 4 ++-- tap_core/CHANGELOG.md | 16 ++++++++++++++++ tap_core/Cargo.toml | 2 +- tap_integration_tests/Cargo.toml | 6 +++--- 6 files changed, 43 insertions(+), 9 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 106ecb90..41b886ce 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { ".": "0.0.0", - "tap_aggregator": "0.1.6", - "tap_core": "0.6.0", - "tap_integration_tests": "0.1.7" + "tap_aggregator": "0.2.0", + "tap_core": "0.7.0", + "tap_integration_tests": "0.1.8" } \ No newline at end of file diff --git a/tap_aggregator/CHANGELOG.md b/tap_aggregator/CHANGELOG.md index bfa00e0c..29aa994c 100644 --- a/tap_aggregator/CHANGELOG.md +++ b/tap_aggregator/CHANGELOG.md @@ -12,6 +12,24 @@ * dependencies * tap_core bumped from 0.5.1 to 0.6.0 +## [0.2.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_aggregator-v0.1.6...tap_aggregator-v0.2.0) (2023-11-23) + + +### ⚠ BREAKING CHANGES + +* rename "gateway" to "sender" everywhere + +### Code Refactoring + +* rename "gateway" to "sender" everywhere ([309f41f](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/309f41f879b51a1f2840ef0ed2552d7faa338b86)), closes [#188](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/188) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * tap_core bumped from 0.6.0 to 0.7.0 + ## [0.1.5](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_aggregator-v0.1.4...tap_aggregator-v0.1.5) (2023-08-24) diff --git a/tap_aggregator/Cargo.toml b/tap_aggregator/Cargo.toml index aa2961ad..cac9003d 100644 --- a/tap_aggregator/Cargo.toml +++ b/tap_aggregator/Cargo.toml @@ -1,6 +1,6 @@ [package] name="tap_aggregator" -version = "0.1.6" +version = "0.2.0" edition.workspace = true license.workspace = true readme = "README.md" @@ -13,7 +13,7 @@ path = "src/main.rs" [dependencies] anyhow = "1.0.70" tokio = { version = "1.27.0", features = ["macros", "signal"] } -tap_core = { version = "0.6.0", path = "../tap_core" } +tap_core = { version = "0.7.0", path = "../tap_core" } jsonrpsee = { version = "0.18.0", features = ["server", "macros"] } ethers-signers = "2.0.3" clap = { version = "4.2.4", features = ["derive", "env"] } diff --git a/tap_core/CHANGELOG.md b/tap_core/CHANGELOG.md index d7e09557..5c5c373e 100644 --- a/tap_core/CHANGELOG.md +++ b/tap_core/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [0.7.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v0.6.0...tap_core-v0.7.0) (2023-11-23) + + +### ⚠ BREAKING CHANGES + +* rename "gateway" to "sender" everywhere + +### Bug Fixes + +* mutable manager.remove_obsolete_receipts ([ca1a01e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/ca1a01e8571f9c65a6b58efbb4964b568c03e6ac)) + + +### Code Refactoring + +* rename "gateway" to "sender" everywhere ([309f41f](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/309f41f879b51a1f2840ef0ed2552d7faa338b86)), closes [#188](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/188) + ## [0.6.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v0.5.1...tap_core-v0.6.0) (2023-10-12) diff --git a/tap_core/Cargo.toml b/tap_core/Cargo.toml index d9f2b5e8..68e2e450 100644 --- a/tap_core/Cargo.toml +++ b/tap_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name="tap_core" -version = "0.6.0" +version = "0.7.0" edition.workspace = true license.workspace = true description = "Core Timeline Aggregation Protocol library: a fast, efficient and trustless unidirectional micro-payments system." diff --git a/tap_integration_tests/Cargo.toml b/tap_integration_tests/Cargo.toml index 4f8faa4a..5eecb3ab 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.7" +version = "0.1.8" edition.workspace = true license.workspace = true autotests = false @@ -8,8 +8,8 @@ description = "Integration tests for the Timeline Aggregation Protocol." publish = false [dependencies] -tap_aggregator = { version = "0.1.6", path = "../tap_aggregator" } -tap_core = { version = "0.6.0", path = "../tap_core" } +tap_aggregator = { version = "0.2.0", path = "../tap_aggregator" } +tap_core = { version = "0.7.0", path = "../tap_core" } jsonrpsee = { version = "0.18.0", features = ["http-client", "server"] } ethers = "2.0.0" clap = { version = "4.2.4", features = ["derive", "env"] }