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
9 changes: 6 additions & 3 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
".": "0.0.0",
"tap_aggregator": "0.3.3",
"tap_core": "2.0.0",
"tap_integration_tests": "0.1.12"
"tap_aggregator": "0.4.0",
"tap_core": "3.0.0",
"tap_integration_tests": "0.1.13",
"tap_eip712_message": "0.1.0",
"tap_graph": "0.1.0",
"tap_receipt": "0.1.0"
}
24 changes: 24 additions & 0 deletions tap_aggregator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,30 @@
* dependencies
* tap_core bumped from * to 2.0.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)


### ⚠ BREAKING CHANGES

* rename EIP712SignedMessage to Eip712SignedMessage
* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268))
* make manager generic over rav ([#267](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/267))
* manager generic over receipt ([#266](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/266))

### Code Refactoring

* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268)) ([3d35cac](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/3d35cac73159a89125051b5148a88efc63eb2193))
* make manager generic over rav ([#267](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/267)) ([1fc51a3](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/1fc51a3ff9ce74027b47a0e6d026a5bedd9ca00c))
* manager generic over receipt ([#266](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/266)) ([25a3316](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/25a3316abd8596c3d5081d6b8f0507034c60d2a4))
* rename EIP712SignedMessage to Eip712SignedMessage ([0b0b59e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0b0b59e380c9e2f04da2b28c26ccd0202f15a4a8))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* tap_core bumped from 2.0.0 to 3.0.0

## [0.3.3](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_aggregator-v0.3.2...tap_aggregator-v0.3.3) (2024-12-27)


Expand Down
4 changes: 2 additions & 2 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.3.3"
version = "0.4.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down Expand Up @@ -34,7 +34,7 @@ rayon = "1.10.0"
serde.workspace = true
serde_json.workspace = true
strum = { version = "0.26.3", features = ["derive"] }
tap_core = { path = "../tap_core", version = "2.0.0" }
tap_core = { path = "../tap_core", version = "3.0.0" }
tokio.workspace = true
tonic = { version = "0.12.3", features = ["transport", "zstd"] }
tower = { version = "0.5.2", features = ["util", "steer"] }
Expand Down
19 changes: 19 additions & 0 deletions tap_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

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


### ⚠ BREAKING CHANGES

* rename EIP712SignedMessage to Eip712SignedMessage
* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268))
* make manager generic over rav ([#267](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/267))
* manager generic over receipt ([#266](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/266))
* remove unused escrow handler methods ([#264](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/264))

### Code Refactoring

* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268)) ([3d35cac](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/3d35cac73159a89125051b5148a88efc63eb2193))
* make manager generic over rav ([#267](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/267)) ([1fc51a3](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/1fc51a3ff9ce74027b47a0e6d026a5bedd9ca00c))
* manager generic over receipt ([#266](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/266)) ([25a3316](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/25a3316abd8596c3d5081d6b8f0507034c60d2a4))
* remove unused escrow handler methods ([#264](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/264)) ([e5511ff](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/e5511ff7a5cc4753782f718f4517a0a0a8d9db56))
* rename EIP712SignedMessage to Eip712SignedMessage ([0b0b59e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0b0b59e380c9e2f04da2b28c26ccd0202f15a4a8))

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


Expand Down
2 changes: 1 addition & 1 deletion tap_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tap_core"
version = "2.0.0"
version = "3.0.0"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions tap_eip712_message/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

## 0.1.0 (2025-01-28)


### ⚠ BREAKING CHANGES

* rename EIP712SignedMessage to Eip712SignedMessage
* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268))

### Code Refactoring

* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268)) ([3d35cac](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/3d35cac73159a89125051b5148a88efc63eb2193))
* rename EIP712SignedMessage to Eip712SignedMessage ([0b0b59e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0b0b59e380c9e2f04da2b28c26ccd0202f15a4a8))
14 changes: 14 additions & 0 deletions tap_graph/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

## 0.1.0 (2025-01-28)


### ⚠ BREAKING CHANGES

* rename EIP712SignedMessage to Eip712SignedMessage
* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268))

### Code Refactoring

* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268)) ([3d35cac](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/3d35cac73159a89125051b5148a88efc63eb2193))
* rename EIP712SignedMessage to Eip712SignedMessage ([0b0b59e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0b0b59e380c9e2f04da2b28c26ccd0202f15a4a8))
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.12"
version = "0.1.13"
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 = "2.0.0" }
tap_core = { path = "../tap_core", version = "3.0.0" }
rand.workspace = true
anyhow.workspace = true
tokio.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions tap_receipt/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

## 0.1.0 (2025-01-28)


### ⚠ BREAKING CHANGES

* rename EIP712SignedMessage to Eip712SignedMessage
* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268))

### Code Refactoring

* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268)) ([3d35cac](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/3d35cac73159a89125051b5148a88efc63eb2193))
* rename EIP712SignedMessage to Eip712SignedMessage ([0b0b59e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0b0b59e380c9e2f04da2b28c26ccd0202f15a4a8))