diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 770cb3b..14bb0d5 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 69d141d..df5d195 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 c9af2de..9a92d9a 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 f87b0f3..f8e301e 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 553a62a..53a9a68 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 ec45e06..25b1d0b 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