Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
".": "0.0.0",
"tap_aggregator": "0.5.0",
"tap_core": "4.0.0",
"tap_integration_tests": "0.1.15",
"tap_eip712_message": "0.1.0",
"tap_graph": "0.2.1",
"tap_receipt": "1.0.0"
"tap_aggregator": "0.5.1",
"tap_core": "4.1.0",
"tap_integration_tests": "0.1.16",
"tap_eip712_message": "0.2.0",
"tap_graph": "0.3.0",
"tap_receipt": "1.1.0"
}
15 changes: 15 additions & 0 deletions tap_aggregator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,21 @@
* tap_core bumped from 3.0.0 to 3.0.1
* tap_graph bumped from 0.1.0 to 0.2.0

## [0.5.1](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_aggregator-v0.5.0...tap_aggregator-v0.5.1) (2025-04-22)


### Features

* bump for release ([#287](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/287)) ([3ba2620](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/3ba262076754e504d45e421ac3b46f4a517a774f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* tap_core bumped from 4.0.0 to 4.1.0
* tap_graph bumped from 0.2.1 to 0.3.0

## [0.5.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_aggregator-v0.4.1...tap_aggregator-v0.5.0) (2025-03-20)


Expand Down
6 changes: 3 additions & 3 deletions tap_aggregator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tap_aggregator"
version = "0.5.0"
version = "0.5.1"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand All @@ -27,8 +27,8 @@ rdkafka.workspace = true
serde.workspace = true
serde_json.workspace = true
strum.workspace = true
tap_core = { path = "../tap_core", version = "4.0.0" }
tap_graph = { version = "0.2.1", path = "../tap_graph", features = ["v2"] }
tap_core = { path = "../tap_core", version = "4.1.0" }
tap_graph = { version = "0.3.0", path = "../tap_graph", features = ["v2"] }
thegraph-core = { workspace = true, features = ["alloy-eip712"] }
tokio.workspace = true
tonic.workspace = true
Expand Down
16 changes: 16 additions & 0 deletions tap_core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@
* dependencies
* tap_graph bumped from 0.1.0 to 0.2.0

## [4.1.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v4.0.0...tap_core-v4.1.0) (2025-04-22)


### Features

* bump for release ([#287](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/287)) ([3ba2620](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/3ba262076754e504d45e421ac3b46f4a517a774f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* tap_eip712_message bumped from 0.1.0 to 0.2.0
* tap_graph bumped from 0.2.1 to 0.3.0
* tap_receipt bumped from 1.0.0 to 1.1.0

## [4.0.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v3.0.1...tap_core-v4.0.0) (2025-03-20)


Expand Down
8 changes: 4 additions & 4 deletions tap_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tap_core"
version = "4.0.0"
version = "4.1.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand All @@ -11,9 +11,9 @@ description = "Core Timeline Aggregation Protocol library: a fast, efficient and
anyhow.workspace = true
async-trait.workspace = true
rand.workspace = true
tap_eip712_message = { version = "0.1.0", path = "../tap_eip712_message" }
tap_graph = { version = "0.2.1", path = "../tap_graph", optional = true }
tap_receipt = { version = "1.0.0", path = "../tap_receipt" }
tap_eip712_message = { version = "0.2.0", path = "../tap_eip712_message" }
tap_graph = { version = "0.3.0", path = "../tap_graph", optional = true }
tap_receipt = { version = "1.1.0", path = "../tap_receipt" }
thegraph-core.workspace = true
thiserror.workspace = true
tokio.workspace = true
Expand Down
7 changes: 7 additions & 0 deletions tap_eip712_message/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.2.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_eip712_message-v0.1.0...tap_eip712_message-v0.2.0) (2025-04-22)


### Features

* bump for release ([#287](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/287)) ([3ba2620](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/3ba262076754e504d45e421ac3b46f4a517a774f))

## 0.1.0 (2025-01-28)


Expand Down
2 changes: 1 addition & 1 deletion tap_eip712_message/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tap_eip712_message"
version = "0.1.0"
version = "0.2.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
15 changes: 15 additions & 0 deletions tap_graph/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@
* dependencies
* tap_receipt bumped from 0.1.0 to 1.0.0

## [0.3.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_graph-v0.2.1...tap_graph-v0.3.0) (2025-04-22)


### Features

* bump for release ([#287](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/287)) ([3ba2620](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/3ba262076754e504d45e421ac3b46f4a517a774f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* tap_eip712_message bumped from 0.1.0 to 0.2.0
* tap_receipt bumped from 1.0.0 to 1.1.0

## [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)


Expand Down
6 changes: 3 additions & 3 deletions tap_graph/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tap_graph"
version = "0.2.1"
version = "0.3.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand All @@ -9,8 +9,8 @@ description = "The Graph TAP receipt structs"
[dependencies]
rand.workspace = true
serde.workspace = true
tap_eip712_message = { version = "0.1.0", path = "../tap_eip712_message" }
tap_receipt = { version = "1.0.0", path = "../tap_receipt" }
tap_eip712_message = { version = "0.2.0", path = "../tap_eip712_message" }
tap_receipt = { version = "1.1.0", path = "../tap_receipt" }
thegraph-core.workspace = true


Expand Down
4 changes: 2 additions & 2 deletions tap_integration_tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tap_integration_tests"
version = "0.1.15"
version = "0.1.16"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand All @@ -10,7 +10,7 @@ publish = false

[dependencies]
tap_aggregator = { path = "../tap_aggregator" }
tap_core = { path = "../tap_core", version = "4.0.0" }
tap_core = { path = "../tap_core", version = "4.1.0" }
tap_graph = { path = "../tap_graph" }

anyhow.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions tap_receipt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [1.1.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_receipt-v1.0.0...tap_receipt-v1.1.0) (2025-04-22)


### Features

* bump for release ([#287](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/287)) ([3ba2620](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/3ba262076754e504d45e421ac3b46f4a517a774f))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* tap_eip712_message bumped from 0.1.0 to 0.2.0

## [1.0.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_receipt-v0.1.0...tap_receipt-v1.0.0) (2025-03-20)


Expand Down
4 changes: 2 additions & 2 deletions tap_receipt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tap_receipt"
version = "1.0.0"
version = "1.1.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand All @@ -11,7 +11,7 @@ anyhow.workspace = true
anymap3.workspace = true
async-trait.workspace = true
serde.workspace = true
tap_eip712_message = { version = "0.1.0", path = "../tap_eip712_message" }
tap_eip712_message = { version = "0.2.0", path = "../tap_eip712_message" }
thegraph-core.workspace = true
thiserror.workspace = true

Expand Down