diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 9ee95a9..4d88b8d 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,9 +1,9 @@ { ".": "0.0.0", - "tap_aggregator": "0.4.0", - "tap_core": "3.0.0", - "tap_integration_tests": "0.1.13", + "tap_aggregator": "0.4.1", + "tap_core": "3.0.1", + "tap_integration_tests": "0.1.14", "tap_eip712_message": "0.1.0", - "tap_graph": "0.1.0", + "tap_graph": "0.2.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 d7ed3b8..1f8d285 100644 --- a/tap_aggregator/CHANGELOG.md +++ b/tap_aggregator/CHANGELOG.md @@ -20,6 +20,11 @@ * dependencies * tap_core bumped from * to 2.0.0 +* The following workspace dependencies were updated + * dependencies + * tap_core bumped from 3.0.0 to 3.0.1 + * tap_graph bumped from 0.1.0 to 0.2.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) diff --git a/tap_aggregator/Cargo.toml b/tap_aggregator/Cargo.toml index 2138912..225ccf0 100644 --- a/tap_aggregator/Cargo.toml +++ b/tap_aggregator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tap_aggregator" -version = "0.4.0" +version = "0.4.1" edition.workspace = true license.workspace = true repository.workspace = true @@ -34,12 +34,12 @@ rayon = "1.10.0" serde.workspace = true serde_json.workspace = true strum = { version = "0.26.3", features = ["derive"] } -tap_core = { path = "../tap_core", version = "3.0.0" } +tap_core = { path = "../tap_core", version = "3.0.1" } tokio.workspace = true tonic = { version = "0.12.3", features = ["transport", "zstd"] } tower = { version = "0.5.2", features = ["util", "steer"] } tracing-subscriber = "0.3.17" -tap_graph = { version = "0.1.0", path = "../tap_graph" } +tap_graph = { version = "0.2.0", path = "../tap_graph" } [build-dependencies] tonic-build = "0.12.3" diff --git a/tap_core/CHANGELOG.md b/tap_core/CHANGELOG.md index b86ad7f..b795215 100644 --- a/tap_core/CHANGELOG.md +++ b/tap_core/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +* The following workspace dependencies were updated + * dependencies + * tap_graph bumped from 0.1.0 to 0.2.0 + ## [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) diff --git a/tap_core/Cargo.toml b/tap_core/Cargo.toml index 84e769f..c888d0b 100644 --- a/tap_core/Cargo.toml +++ b/tap_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tap_core" -version = "3.0.0" +version = "3.0.1" edition.workspace = true license.workspace = true repository.workspace = true @@ -17,7 +17,7 @@ thiserror.workspace = true tokio.workspace = true tap_receipt = { version = "0.1.0", path = "../tap_receipt" } tap_eip712_message = { version = "0.1.0", path = "../tap_eip712_message" } -tap_graph = { version = "0.1.0", path = "../tap_graph", optional = true } +tap_graph = { version = "0.2.0", path = "../tap_graph", optional = true } [dev-dependencies] criterion = { version = "0.5.1", features = ["async_std"] } diff --git a/tap_graph/CHANGELOG.md b/tap_graph/CHANGELOG.md index 141ad10..1b8737c 100644 --- a/tap_graph/CHANGELOG.md +++ b/tap_graph/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_graph-v0.1.0...tap_graph-v0.2.0) (2025-01-29) + + +### Features + +* add horizon types to tap_graph ([#270](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/270)) ([b8e424e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/b8e424e2a177fdf6c6a3a936c5f6450e9d6fc504)) + ## 0.1.0 (2025-01-28) diff --git a/tap_graph/Cargo.toml b/tap_graph/Cargo.toml index a7dde80..bf2d75c 100644 --- a/tap_graph/Cargo.toml +++ b/tap_graph/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tap_graph" -version = "0.1.0" +version = "0.2.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 f8f33b9..3b954d2 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.13" +version = "0.1.14" 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 = "3.0.0" } +tap_core = { path = "../tap_core", version = "3.0.1" } rand.workspace = true anyhow.workspace = true tokio.workspace = true