Skip to content

Commit 536c4a2

Browse files
authored
Merge pull request #170 from semiotic-ai/release-please--branches--main
chore: release main
2 parents cc7bbc4 + e1981a8 commit 536c4a2

File tree

6 files changed

+37
-9
lines changed

6 files changed

+37
-9
lines changed

.release-please-manifest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
".": "0.0.0",
3-
"tap_aggregator": "0.1.3",
4-
"tap_core": "0.4.0",
5-
"tap_integration_tests": "0.1.4"
3+
"tap_aggregator": "0.1.4",
4+
"tap_core": "0.5.0",
5+
"tap_integration_tests": "0.1.5"
66
}

tap_aggregator/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,22 @@
88
* dependencies
99
* tap_core bumped from 0.3.0 to 0.4.0
1010

11+
## [0.1.4](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_aggregator-v0.1.3...tap_aggregator-v0.1.4) (2023-08-17)
12+
13+
14+
### Features
15+
16+
* **tap-aggregator:** add default for key derive path arg ([3737f51](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/3737f51d5235981c868995e4d5b6798917341123))
17+
* **tap-aggregator:** allow argument for key derive path to be used with mnemonic ([aec0a66](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/aec0a6628fff813e017c2e30d25530f81038dcd7))
18+
* **tap-aggregator:** update to work with alloy changes ([9e94403](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/9e9440354ae73cd3491e72552ebc1877c3313509))
19+
20+
21+
### Dependencies
22+
23+
* The following workspace dependencies were updated
24+
* dependencies
25+
* tap_core bumped from 0.4.0 to 0.5.0
26+
1127
## [0.1.1](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_aggregator-v0.1.0...tap_aggregator-v0.1.1) (2023-07-20)
1228

1329

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.1.3"
3+
version = "0.1.4"
44
edition.workspace = true
55
license.workspace = true
66
readme = "README.md"
@@ -13,7 +13,7 @@ path = "src/main.rs"
1313
[dependencies]
1414
anyhow = "1.0.70"
1515
tokio = { version = "1.27.0", features = ["macros", "signal"] }
16-
tap_core = { version = "0.4.0", path = "../tap_core" }
16+
tap_core = { version = "0.5.0", path = "../tap_core" }
1717
jsonrpsee = { version = "0.18.0", features = ["server", "macros"] }
1818
ethers-signers = "2.0.3"
1919
clap = { version = "4.2.4", features = ["derive", "env"] }

tap_core/CHANGELOG.md

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

3+
## [0.5.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v0.4.0...tap_core-v0.5.0) (2023-08-17)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* **tap-core:** receipts, RAVs, and eip712-signed-message now use alloy primitive address
9+
10+
### Features
11+
12+
* **tap-core-bench:** update to work with alloy changes ([43c5e6c](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/43c5e6c24218b9c5138cabec50262715f6b34124))
13+
* **tap-core:** changes eip712 and address components to alloy library ([a99af2f](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/a99af2f8d64ad2d1a4d175de5e7789254fb2c36f))
14+
315
## [0.4.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v0.3.0...tap_core-v0.4.0) (2023-08-08)
416

517

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 = "0.4.0"
3+
version = "0.5.0"
44
edition.workspace = true
55
license.workspace = true
66
description = "Core Timeline Aggregation Protocol library: a fast, efficient and trustless unidirectional micro-payments system."

tap_integration_tests/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "tap_integration_tests"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
edition.workspace = true
55
license.workspace = true
66
autotests = false
77
description = "Integration tests for the Timeline Aggregation Protocol."
88
publish = false
99

1010
[dependencies]
11-
tap_aggregator = { version = "0.1.3", path = "../tap_aggregator" }
12-
tap_core = { version = "0.4.0", path = "../tap_core" }
11+
tap_aggregator = { version = "0.1.4", path = "../tap_aggregator" }
12+
tap_core = { version = "0.5.0", path = "../tap_core" }
1313
jsonrpsee = { version = "0.18.0", features = ["http-client", "server"] }
1414
ethers = "2.0.0"
1515
clap = { version = "4.2.4", features = ["derive", "env"] }

0 commit comments

Comments
 (0)