Skip to content

Commit 4b83a3a

Browse files
authored
Merge pull request #198 from semiotic-ai/release-please--branches--main
chore: release main
2 parents 2a0bf49 + f73e192 commit 4b83a3a

File tree

6 files changed

+96
-9
lines changed

6 files changed

+96
-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.2.0",
4-
"tap_core": "0.7.0",
5-
"tap_integration_tests": "0.1.8"
3+
"tap_aggregator": "0.3.0",
4+
"tap_core": "0.8.0",
5+
"tap_integration_tests": "0.1.9"
66
}

tap_aggregator/CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,41 @@
1212
* dependencies
1313
* tap_core bumped from 0.5.1 to 0.6.0
1414

15+
## [0.3.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_aggregator-v0.2.0...tap_aggregator-v0.3.0) (2024-03-11)
16+
17+
18+
### ⚠ BREAKING CHANGES
19+
20+
* update project structure
21+
* update rav attributes to camel case
22+
* replace aggregator mnemonic with private key ([#201](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/201))
23+
24+
### Features
25+
26+
* **aggregator:** Add support for multiple signers in input ([#211](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/211)) ([b16f23d](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/b16f23d5481de65658b08544c083e2849821370e)), closes [#205](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/205)
27+
* **core:** Supply EIP712 domain sep with prefilled version and name ([#210](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/210)) ([2ed564b](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/2ed564b9581c4eff2364fdc490f0f8d0022a6982))
28+
* replace aggregator mnemonic with private key ([#201](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/201)) ([24583b4](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/24583b468a08527f7add79c71da0c5d56ab760c9))
29+
30+
31+
### Bug Fixes
32+
33+
* listen on 0.0.0.0 instead of localhost ([#203](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/203)) ([5099ad1](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/5099ad166dda203cb9938c1fa417cf86d2215667))
34+
* listen on 0.0.0.0 instead of localhost ([#204](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/204)) ([95d8ea6](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/95d8ea6bcd0e22e15dc8a2fee29c9b64abda978b))
35+
* rebase main ([0c7bc1c](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0c7bc1c9cebbb8dfad1c83067a1457380009925f))
36+
* update rav attributes to camel case ([1b232e4](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/1b232e4de230dc4922937fea2b489c7409ca2408))
37+
38+
39+
### Code Refactoring
40+
41+
* update project structure ([70ee2c6](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/70ee2c67125653c25f479ee5f11e7c7e555078b7))
42+
43+
44+
### Dependencies
45+
46+
* The following workspace dependencies were updated
47+
* dependencies
48+
* tap_core bumped from 0.7.0 to 0.8.0
49+
1550
## [0.2.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_aggregator-v0.1.6...tap_aggregator-v0.2.0) (2023-11-28)
1651

1752

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.2.0"
3+
version = "0.3.0"
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.7.0", path = "../tap_core" }
16+
tap_core = { version = "0.8.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: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,57 @@
11
# Changelog
22

3+
## [0.8.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v0.7.0...tap_core-v0.8.0) (2024-03-11)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* update project structure
9+
* implement unique and timestamp check hard coded
10+
* remove stateful checks
11+
* remove timestamp check from manager
12+
* update rav attributes to camel case
13+
* use single executor for manager and auditor
14+
* convert receipt and rav storage into executor
15+
* use typestate for receivedreceipt
16+
* split read and write storage adapters
17+
18+
### Features
19+
20+
* add serde to ReceivedReceipt ([b13bedf](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/b13bedf4f145fe0209c48d4d51630233ad71b4b8))
21+
* **aggregator:** Add support for multiple signers in input ([#211](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/211)) ([b16f23d](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/b16f23d5481de65658b08544c083e2849821370e)), closes [#205](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/205)
22+
* **core:** Supply EIP712 domain sep with prefilled version and name ([#210](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/210)) ([2ed564b](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/2ed564b9581c4eff2364fdc490f0f8d0022a6982))
23+
* implement unique and timestamp check hard coded ([7c3f5a9](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/7c3f5a97679b7fcb3cd1150517e6bd77585255e0))
24+
25+
26+
### Bug Fixes
27+
28+
* add debug to messageid ([fbdd328](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/fbdd328f4170d58800b62deed833493b728afb68))
29+
* checks need to be send and sync ([78ae2a8](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/78ae2a89e395a49a186eef62a26c5f51ca279735))
30+
* compile tests ([06cf24c](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/06cf24cac1b4e50bcd8234557e09556b7de75007))
31+
* implement receipt delete to mock ([50058f7](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/50058f7043303bbb914de7808b641b39800e0ede))
32+
* missing merge conflicts ([8c95954](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/8c9595456bad9c334b539d0363de884239f14157))
33+
* rebase main ([0c7bc1c](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0c7bc1c9cebbb8dfad1c83067a1457380009925f))
34+
* remove EscrowAdapter dependency ([3045f61](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/3045f61c2ce556ab13bf9268102c9af0387b6226))
35+
* update rav attributes to camel case ([1b232e4](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/1b232e4de230dc4922937fea2b489c7409ca2408))
36+
* update timestamp check only after rav update ([bfb1eb0](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/bfb1eb07aa2d26f611ce14d4d0b57fddb9da2ea6))
37+
* use the correct timestamp check ([1b1d19c](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/1b1d19ca00244f01fb45c8d62398dfe16ddac7bb))
38+
39+
40+
### Reverts
41+
42+
* rename back to adapters ([42bd2df](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/42bd2dfce16d12753ade4577cb0ee47b3d82dbce))
43+
44+
45+
### Code Refactoring
46+
47+
* convert receipt and rav storage into executor ([467c917](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/467c917af61733e3c2cbf3823c4377091179980b))
48+
* remove stateful checks ([1044f53](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/1044f534be5e35a387d32e6b8bd86e86af188b66))
49+
* remove timestamp check from manager ([0a3b983](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0a3b983b5f20b27c0afdc02d9db682481e7493a9))
50+
* split read and write storage adapters ([2e681a5](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/2e681a529d0c03e2fe455f64692e23024ad98073))
51+
* update project structure ([70ee2c6](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/70ee2c67125653c25f479ee5f11e7c7e555078b7))
52+
* use single executor for manager and auditor ([6794fbb](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/6794fbb6a7d02774008d57d62ccc10564cf952c1))
53+
* use typestate for receivedreceipt ([89b5d94](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/89b5d941a37c475cb47c768f2618b902cf8908c5))
54+
355
## [0.7.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v0.6.0...tap_core-v0.7.0) (2023-11-28)
456

557

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.7.0"
3+
version = "0.8.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.8"
3+
version = "0.1.9"
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.2.0", path = "../tap_aggregator" }
12-
tap_core = { version = "0.7.0", path = "../tap_core", features = ["in_memory"]}
11+
tap_aggregator = { version = "0.3.0", path = "../tap_aggregator" }
12+
tap_core = { version = "0.8.0", path = "../tap_core", features = ["in_memory"]}
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)