From d6fa628d1e0e5c9661ec83642018dc7072a36228 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, 30 Oct 2024 00:27:50 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 6 +++--- tap_aggregator/CHANGELOG.md | 4 ++++ tap_aggregator/Cargo.toml | 4 ++-- tap_core/CHANGELOG.md | 21 +++++++++++++++++++++ tap_core/Cargo.toml | 2 +- tap_integration_tests/Cargo.toml | 4 ++-- 6 files changed, 33 insertions(+), 8 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 770cb3bb..14bb0d51 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { ".": "0.0.0", - "tap_aggregator": "0.3.1", - "tap_core": "1.0.0", - "tap_integration_tests": "0.1.10" + "tap_aggregator": "0.3.2", + "tap_core": "2.0.0", + "tap_integration_tests": "0.1.11" } \ No newline at end of file diff --git a/tap_aggregator/CHANGELOG.md b/tap_aggregator/CHANGELOG.md index 69d141d8..df5d195e 100644 --- a/tap_aggregator/CHANGELOG.md +++ b/tap_aggregator/CHANGELOG.md @@ -16,6 +16,10 @@ * dependencies * tap_core bumped from 0.8.0 to 1.0.0 +* The following workspace dependencies were updated + * dependencies + * tap_core bumped from * to 2.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 c9af2de2..9a92d9ab 100644 --- a/tap_aggregator/Cargo.toml +++ b/tap_aggregator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tap_aggregator" -version = "0.3.1" +version = "0.3.2" edition.workspace = true license.workspace = true repository.workspace = true @@ -12,7 +12,7 @@ name = "tap_aggregator" path = "src/main.rs" [dependencies] -tap_core = { path = "../tap_core", version = "*" } +tap_core = { path = "../tap_core", version = "2.0.0" } serde.workspace = true alloy.workspace = true anyhow.workspace = true diff --git a/tap_core/CHANGELOG.md b/tap_core/CHANGELOG.md index f87b0f38..f8e301e9 100644 --- a/tap_core/CHANGELOG.md +++ b/tap_core/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [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) + + +### ⚠ BREAKING CHANGES + +* add context to checks +* add retryable errors to checks + +### Features + +* add context to checks ([58a6a52](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/58a6a52eba8152ee3add27d10e59b9e10ab9a5f4)) +* add retryable errors to checks ([51f04cb](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/51f04cb0dbe7387ffd94f16eb59bbeb1c6c51680)) +* expected_rav to become result<rav,error> ([70fa8fa](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/70fa8fa116c32b074f5c691979de02177b385560)) +* make error public access on failed receipt ([7180b86](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/7180b86e2c5ef5e2009518d6cd2ed8fe16b337eb)) +* obtain invalid receipts ([101dc5e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/101dc5eea45baf143c5135fe66bbb5f62dfa9109)) + + +### Bug Fixes + +* Remove obtain_invalid_receipts ([ad255dc](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/ad255dcbb4a5ea101c575038534312b59e12d693)) + ## [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) diff --git a/tap_core/Cargo.toml b/tap_core/Cargo.toml index 553a62ae..53a9a68b 100644 --- a/tap_core/Cargo.toml +++ b/tap_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tap_core" -version = "1.0.0" +version = "2.0.0" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/tap_integration_tests/Cargo.toml b/tap_integration_tests/Cargo.toml index ec45e063..25b1d0b7 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.10" +version = "0.1.11" 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 = "*" } +tap_core = { path = "../tap_core", version = "2.0.0" } rand.workspace = true anyhow.workspace = true tokio.workspace = true