From 0ef719b5c80420c3b63a39e8cce6ce7ce4eabce1 Mon Sep 17 00:00:00 2001 From: "semiotic-labs-pr-automation[bot]" <138054206+semiotic-labs-pr-automation[bot]@users.noreply.github.com> Date: Wed, 27 Mar 2024 22:19:31 +0000 Subject: [PATCH] chore: release main (#220) Co-authored-by: semiotic-labs-pr-automation[bot] <138054206+semiotic-labs-pr-automation[bot]@users.noreply.github.com> --- .release-please-manifest.json | 6 +++--- tap_aggregator/CHANGELOG.md | 4 ++++ tap_aggregator/Cargo.toml | 4 ++-- tap_core/CHANGELOG.md | 11 +++++++++++ tap_core/Cargo.toml | 2 +- tap_integration_tests/Cargo.toml | 6 +++--- 6 files changed, 24 insertions(+), 9 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a1e7c019..770cb3bb 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { ".": "0.0.0", - "tap_aggregator": "0.3.0", - "tap_core": "0.8.0", - "tap_integration_tests": "0.1.9" + "tap_aggregator": "0.3.1", + "tap_core": "1.0.0", + "tap_integration_tests": "0.1.10" } \ No newline at end of file diff --git a/tap_aggregator/CHANGELOG.md b/tap_aggregator/CHANGELOG.md index 12cce52a..69d141d8 100644 --- a/tap_aggregator/CHANGELOG.md +++ b/tap_aggregator/CHANGELOG.md @@ -12,6 +12,10 @@ * dependencies * tap_core bumped from 0.5.1 to 0.6.0 +* The following workspace dependencies were updated + * dependencies + * tap_core bumped from 0.8.0 to 1.0.0 + ## [0.3.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_aggregator-v0.2.0...tap_aggregator-v0.3.0) (2024-03-11) diff --git a/tap_aggregator/Cargo.toml b/tap_aggregator/Cargo.toml index 7e09bc88..0c326e41 100644 --- a/tap_aggregator/Cargo.toml +++ b/tap_aggregator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tap_aggregator" -version = "0.3.0" +version = "0.3.1" 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.8.0", path = "../tap_core" } +tap_core = { version = "1.0.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 a652ab38..f87b0f38 100644 --- a/tap_core/CHANGELOG.md +++ b/tap_core/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [1.0.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v0.8.0...tap_core-v1.0.0) (2024-03-27) + + +### ⚠ BREAKING CHANGES + +* create docs and readme. + +### Documentation + +* create docs and readme. ([4ebf258](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/4ebf2584441514166fd9e91999b1710af1d54524)) + ## [0.8.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v0.7.0...tap_core-v0.8.0) (2024-03-11) diff --git a/tap_core/Cargo.toml b/tap_core/Cargo.toml index de1c8ce8..5f4a1d7f 100644 --- a/tap_core/Cargo.toml +++ b/tap_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tap_core" -version = "0.8.0" +version = "1.0.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 7cf66110..18741a1d 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.9" +version = "0.1.10" 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.3.0", path = "../tap_aggregator" } -tap_core = { version = "0.8.0", path = "../tap_core", features = ["in_memory"]} +tap_aggregator = { version = "0.3.1", path = "../tap_aggregator" } +tap_core = { version = "1.0.0", path = "../tap_core", features = ["in_memory"]} jsonrpsee = { version = "0.18.0", features = ["http-client", "server"] } ethers = "2.0.0" clap = { version = "4.2.4", features = ["derive", "env"] }