Skip to content

Commit 660905d

Browse files
chore: release main (#265)
Co-authored-by: semiotic-labs-pr-automation[bot] <138054206+semiotic-labs-pr-automation[bot]@users.noreply.github.com>
1 parent 29e5f17 commit 660905d

File tree

9 files changed

+96
-8
lines changed

9 files changed

+96
-8
lines changed

.release-please-manifest.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
".": "0.0.0",
3-
"tap_aggregator": "0.3.3",
4-
"tap_core": "2.0.0",
5-
"tap_integration_tests": "0.1.12"
3+
"tap_aggregator": "0.4.0",
4+
"tap_core": "3.0.0",
5+
"tap_integration_tests": "0.1.13",
6+
"tap_eip712_message": "0.1.0",
7+
"tap_graph": "0.1.0",
8+
"tap_receipt": "0.1.0"
69
}

tap_aggregator/CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,30 @@
2020
* dependencies
2121
* tap_core bumped from * to 2.0.0
2222

23+
## [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)
24+
25+
26+
### ⚠ BREAKING CHANGES
27+
28+
* rename EIP712SignedMessage to Eip712SignedMessage
29+
* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268))
30+
* make manager generic over rav ([#267](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/267))
31+
* manager generic over receipt ([#266](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/266))
32+
33+
### Code Refactoring
34+
35+
* 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))
36+
* 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))
37+
* 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))
38+
* rename EIP712SignedMessage to Eip712SignedMessage ([0b0b59e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0b0b59e380c9e2f04da2b28c26ccd0202f15a4a8))
39+
40+
41+
### Dependencies
42+
43+
* The following workspace dependencies were updated
44+
* dependencies
45+
* tap_core bumped from 2.0.0 to 3.0.0
46+
2347
## [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)
2448

2549

tap_aggregator/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tap_aggregator"
3-
version = "0.3.3"
3+
version = "0.4.0"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true
@@ -34,7 +34,7 @@ rayon = "1.10.0"
3434
serde.workspace = true
3535
serde_json.workspace = true
3636
strum = { version = "0.26.3", features = ["derive"] }
37-
tap_core = { path = "../tap_core", version = "2.0.0" }
37+
tap_core = { path = "../tap_core", version = "3.0.0" }
3838
tokio.workspace = true
3939
tonic = { version = "0.12.3", features = ["transport", "zstd"] }
4040
tower = { version = "0.5.2", features = ["util", "steer"] }

tap_core/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Changelog
22

3+
## [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)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* rename EIP712SignedMessage to Eip712SignedMessage
9+
* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268))
10+
* make manager generic over rav ([#267](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/267))
11+
* manager generic over receipt ([#266](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/266))
12+
* remove unused escrow handler methods ([#264](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/264))
13+
14+
### Code Refactoring
15+
16+
* 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))
17+
* 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))
18+
* 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))
19+
* 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))
20+
* rename EIP712SignedMessage to Eip712SignedMessage ([0b0b59e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0b0b59e380c9e2f04da2b28c26ccd0202f15a4a8))
21+
322
## [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)
423

524

tap_core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tap_core"
3-
version = "2.0.0"
3+
version = "3.0.0"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true

tap_eip712_message/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
## 0.1.0 (2025-01-28)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* rename EIP712SignedMessage to Eip712SignedMessage
9+
* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268))
10+
11+
### Code Refactoring
12+
13+
* 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))
14+
* rename EIP712SignedMessage to Eip712SignedMessage ([0b0b59e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0b0b59e380c9e2f04da2b28c26ccd0202f15a4a8))

tap_graph/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
## 0.1.0 (2025-01-28)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* rename EIP712SignedMessage to Eip712SignedMessage
9+
* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268))
10+
11+
### Code Refactoring
12+
13+
* 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))
14+
* rename EIP712SignedMessage to Eip712SignedMessage ([0b0b59e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0b0b59e380c9e2f04da2b28c26ccd0202f15a4a8))

tap_integration_tests/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tap_integration_tests"
3-
version = "0.1.12"
3+
version = "0.1.13"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true
@@ -10,7 +10,7 @@ publish = false
1010

1111
[dependencies]
1212
tap_aggregator = { path = "../tap_aggregator" }
13-
tap_core = { path = "../tap_core", version = "2.0.0" }
13+
tap_core = { path = "../tap_core", version = "3.0.0" }
1414
rand.workspace = true
1515
anyhow.workspace = true
1616
tokio.workspace = true

tap_receipt/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
## 0.1.0 (2025-01-28)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* rename EIP712SignedMessage to Eip712SignedMessage
9+
* create tap_eip712_message, tap_receipts and tap_graph ([#268](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/268))
10+
11+
### Code Refactoring
12+
13+
* 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))
14+
* rename EIP712SignedMessage to Eip712SignedMessage ([0b0b59e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0b0b59e380c9e2f04da2b28c26ccd0202f15a4a8))

0 commit comments

Comments
 (0)