Skip to content

Commit 561a44e

Browse files
authored
Merge pull request #292 from semiotic-ai/release-please--branches--main
chore: release main
2 parents 28fe042 + f0dbbb6 commit 561a44e

File tree

12 files changed

+78
-21
lines changed

12 files changed

+78
-21
lines changed

.release-please-manifest.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
".": "0.0.0",
3-
"tap_aggregator": "0.5.1",
4-
"tap_core": "4.1.0",
5-
"tap_integration_tests": "0.1.16",
6-
"tap_eip712_message": "0.2.0",
7-
"tap_graph": "0.3.0",
8-
"tap_receipt": "1.1.0"
3+
"tap_aggregator": "0.5.2",
4+
"tap_core": "4.1.1",
5+
"tap_integration_tests": "0.1.17",
6+
"tap_eip712_message": "0.2.1",
7+
"tap_graph": "0.3.1",
8+
"tap_receipt": "1.1.1"
99
}

tap_aggregator/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,21 @@
2525
* tap_core bumped from 3.0.0 to 3.0.1
2626
* tap_graph bumped from 0.1.0 to 0.2.0
2727

28+
## [0.5.2](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_aggregator-v0.5.1...tap_aggregator-v0.5.2) (2025-05-09)
29+
30+
31+
### Bug Fixes
32+
33+
* **receipt:** update check for unique receipts in v1 and v2 ([cc8e00f](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/cc8e00f005dc8640f8db0ab230d9f3f5fd19a69c))
34+
35+
36+
### Dependencies
37+
38+
* The following workspace dependencies were updated
39+
* dependencies
40+
* tap_core bumped from 4.1.0 to 4.1.1
41+
* tap_graph bumped from 0.3.0 to 0.3.1
42+
2843
## [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)
2944

3045

tap_aggregator/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tap_aggregator"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true
@@ -27,8 +27,8 @@ rdkafka.workspace = true
2727
serde.workspace = true
2828
serde_json.workspace = true
2929
strum.workspace = true
30-
tap_core = { path = "../tap_core", version = "4.1.0" }
31-
tap_graph = { version = "0.3.0", path = "../tap_graph", features = ["v2"] }
30+
tap_core = { path = "../tap_core", version = "4.1.1" }
31+
tap_graph = { version = "0.3.1", path = "../tap_graph", features = ["v2"] }
3232
thegraph-core = { workspace = true, features = ["alloy-eip712"] }
3333
tokio.workspace = true
3434
tonic.workspace = true

tap_core/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@
44
* dependencies
55
* tap_graph bumped from 0.1.0 to 0.2.0
66

7+
## [4.1.1](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v4.1.0...tap_core-v4.1.1) (2025-05-09)
8+
9+
10+
### Bug Fixes
11+
12+
* **eip712:** enhance receipt uniqueness verification ([0f5bb43](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0f5bb43e49d286441a239f882f658c570a0ed468))
13+
14+
15+
### Dependencies
16+
17+
* The following workspace dependencies were updated
18+
* dependencies
19+
* tap_eip712_message bumped from 0.2.0 to 0.2.1
20+
* tap_graph bumped from 0.3.0 to 0.3.1
21+
* tap_receipt bumped from 1.1.0 to 1.1.1
22+
723
## [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)
824

925

tap_core/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tap_core"
3-
version = "4.1.0"
3+
version = "4.1.1"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true
@@ -11,9 +11,9 @@ description = "Core Timeline Aggregation Protocol library: a fast, efficient and
1111
anyhow.workspace = true
1212
async-trait.workspace = true
1313
rand.workspace = true
14-
tap_eip712_message = { version = "0.2.0", path = "../tap_eip712_message" }
15-
tap_graph = { version = "0.3.0", path = "../tap_graph", optional = true }
16-
tap_receipt = { version = "1.1.0", path = "../tap_receipt" }
14+
tap_eip712_message = { version = "0.2.1", path = "../tap_eip712_message" }
15+
tap_graph = { version = "0.3.1", path = "../tap_graph", optional = true }
16+
tap_receipt = { version = "1.1.1", path = "../tap_receipt" }
1717
thegraph-core.workspace = true
1818
thiserror.workspace = true
1919
tokio.workspace = true

tap_eip712_message/CHANGELOG.md

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

3+
## [0.2.1](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_eip712_message-v0.2.0...tap_eip712_message-v0.2.1) (2025-05-09)
4+
5+
6+
### Bug Fixes
7+
8+
* **eip712:** enhance receipt uniqueness verification ([0f5bb43](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0f5bb43e49d286441a239f882f658c570a0ed468))
9+
310
## [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)
411

512

tap_eip712_message/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_eip712_message"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true

tap_graph/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
* dependencies
55
* tap_receipt bumped from 0.1.0 to 1.0.0
66

7+
* The following workspace dependencies were updated
8+
* dependencies
9+
* tap_eip712_message bumped from 0.2.0 to 0.2.1
10+
* tap_receipt bumped from 1.1.0 to 1.1.1
11+
712
## [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)
813

914

tap_graph/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tap_graph"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true
@@ -9,8 +9,8 @@ description = "The Graph TAP receipt structs"
99
[dependencies]
1010
rand.workspace = true
1111
serde.workspace = true
12-
tap_eip712_message = { version = "0.2.0", path = "../tap_eip712_message" }
13-
tap_receipt = { version = "1.1.0", path = "../tap_receipt" }
12+
tap_eip712_message = { version = "0.2.1", path = "../tap_eip712_message" }
13+
tap_receipt = { version = "1.1.1", path = "../tap_receipt" }
1414
thegraph-core.workspace = true
1515

1616

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.16"
3+
version = "0.1.17"
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 = "4.1.0" }
13+
tap_core = { path = "../tap_core", version = "4.1.1" }
1414
tap_graph = { path = "../tap_graph" }
1515

1616
anyhow.workspace = true

0 commit comments

Comments
 (0)