Skip to content

Commit 6d15582

Browse files
chore: release main
1 parent 4f55f48 commit 6d15582

File tree

6 files changed

+51
-9
lines changed

6 files changed

+51
-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.6",
4-
"tap_core": "0.6.0",
5-
"tap_integration_tests": "0.1.7"
3+
"tap_aggregator": "0.2.0",
4+
"tap_core": "0.7.0",
5+
"tap_integration_tests": "0.1.8"
66
}

tap_aggregator/CHANGELOG.md

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

15+
## [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)
16+
17+
18+
### ⚠ BREAKING CHANGES
19+
20+
* rename "gateway" to "sender" everywhere
21+
22+
### Code Refactoring
23+
24+
* rename "gateway" to "sender" everywhere ([309f41f](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/309f41f879b51a1f2840ef0ed2552d7faa338b86)), closes [#188](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/188)
25+
26+
27+
### Dependencies
28+
29+
* The following workspace dependencies were updated
30+
* dependencies
31+
* tap_core bumped from 0.6.0 to 0.7.0
32+
1533
## [0.1.5](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_aggregator-v0.1.4...tap_aggregator-v0.1.5) (2023-08-24)
1634

1735

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.6"
3+
version = "0.2.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.6.0", path = "../tap_core" }
16+
tap_core = { version = "0.7.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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Changelog
22

3+
## [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)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* add limit to receipts retrieve
9+
* create_rav_request() returns invalid ReceivedReceipt
10+
* rename "gateway" to "sender" everywhere
11+
12+
### Features
13+
14+
* add limit to receipts retrieve ([0ce2aab](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/0ce2aabca5cf20bb531578e3a92d33ed0a2d4c17))
15+
* create_rav_request() returns invalid ReceivedReceipt ([5bb9001](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/5bb90015dc636aa4c0916e7072724ae7fc03e8e4))
16+
17+
18+
### Bug Fixes
19+
20+
* mutable manager.remove_obsolete_receipts ([ca1a01e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/ca1a01e8571f9c65a6b58efbb4964b568c03e6ac))
21+
22+
23+
### Code Refactoring
24+
25+
* rename "gateway" to "sender" everywhere ([309f41f](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/309f41f879b51a1f2840ef0ed2552d7faa338b86)), closes [#188](https://github.com/semiotic-ai/timeline-aggregation-protocol/issues/188)
26+
327
## [0.6.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v0.5.1...tap_core-v0.6.0) (2023-10-12)
428

529

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.6.0"
3+
version = "0.7.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.7"
3+
version = "0.1.8"
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.6", path = "../tap_aggregator" }
12-
tap_core = { version = "0.6.0", path = "../tap_core" }
11+
tap_aggregator = { version = "0.2.0", path = "../tap_aggregator" }
12+
tap_core = { version = "0.7.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)