Skip to content

Commit d1cbe8f

Browse files
chore: release main (#272)
Co-authored-by: semiotic-labs-pr-automation[bot] <138054206+semiotic-labs-pr-automation[bot]@users.noreply.github.com> Co-authored-by: Gustavo Inacio <[email protected]>
1 parent bbc8dde commit d1cbe8f

File tree

8 files changed

+28
-12
lines changed

8 files changed

+28
-12
lines changed

.release-please-manifest.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
".": "0.0.0",
3-
"tap_aggregator": "0.4.0",
4-
"tap_core": "3.0.0",
5-
"tap_integration_tests": "0.1.13",
3+
"tap_aggregator": "0.4.1",
4+
"tap_core": "3.0.1",
5+
"tap_integration_tests": "0.1.14",
66
"tap_eip712_message": "0.1.0",
7-
"tap_graph": "0.1.0",
7+
"tap_graph": "0.2.0",
88
"tap_receipt": "0.1.0"
99
}

tap_aggregator/CHANGELOG.md

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

23+
* The following workspace dependencies were updated
24+
* dependencies
25+
* tap_core bumped from 3.0.0 to 3.0.1
26+
* tap_graph bumped from 0.1.0 to 0.2.0
27+
2328
## [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)
2429

2530

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.4.0"
3+
version = "0.4.1"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true
@@ -34,12 +34,12 @@ 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 = "3.0.0" }
37+
tap_core = { path = "../tap_core", version = "3.0.1" }
3838
tokio.workspace = true
3939
tonic = { version = "0.12.3", features = ["transport", "zstd"] }
4040
tower = { version = "0.5.2", features = ["util", "steer"] }
4141
tracing-subscriber = "0.3.17"
42-
tap_graph = { version = "0.1.0", path = "../tap_graph" }
42+
tap_graph = { version = "0.2.0", path = "../tap_graph" }
4343

4444
[build-dependencies]
4545
tonic-build = "0.12.3"

tap_core/CHANGELOG.md

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

3+
* The following workspace dependencies were updated
4+
* dependencies
5+
* tap_graph bumped from 0.1.0 to 0.2.0
6+
37
## [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)
48

59

tap_core/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_core"
3-
version = "3.0.0"
3+
version = "3.0.1"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true
@@ -17,7 +17,7 @@ thiserror.workspace = true
1717
tokio.workspace = true
1818
tap_receipt = { version = "0.1.0", path = "../tap_receipt" }
1919
tap_eip712_message = { version = "0.1.0", path = "../tap_eip712_message" }
20-
tap_graph = { version = "0.1.0", path = "../tap_graph", optional = true }
20+
tap_graph = { version = "0.2.0", path = "../tap_graph", optional = true }
2121

2222
[dev-dependencies]
2323
criterion = { version = "0.5.1", features = ["async_std"] }

tap_graph/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.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_graph-v0.1.0...tap_graph-v0.2.0) (2025-01-29)
4+
5+
6+
### Features
7+
8+
* 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))
9+
310
## 0.1.0 (2025-01-28)
411

512

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

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.13"
3+
version = "0.1.14"
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 = "3.0.0" }
13+
tap_core = { path = "../tap_core", version = "3.0.1" }
1414
rand.workspace = true
1515
anyhow.workspace = true
1616
tokio.workspace = true

0 commit comments

Comments
 (0)