Skip to content

Commit d6fa628

Browse files
chore: release main
1 parent 58a6a52 commit d6fa628

File tree

6 files changed

+33
-8
lines changed

6 files changed

+33
-8
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.3.1",
4-
"tap_core": "1.0.0",
5-
"tap_integration_tests": "0.1.10"
3+
"tap_aggregator": "0.3.2",
4+
"tap_core": "2.0.0",
5+
"tap_integration_tests": "0.1.11"
66
}

tap_aggregator/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
* dependencies
1717
* tap_core bumped from 0.8.0 to 1.0.0
1818

19+
* The following workspace dependencies were updated
20+
* dependencies
21+
* tap_core bumped from * to 2.0.0
22+
1923
## [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)
2024

2125

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.3.1"
3+
version = "0.3.2"
44
edition.workspace = true
55
license.workspace = true
66
repository.workspace = true
@@ -12,7 +12,7 @@ name = "tap_aggregator"
1212
path = "src/main.rs"
1313

1414
[dependencies]
15-
tap_core = { path = "../tap_core", version = "*" }
15+
tap_core = { path = "../tap_core", version = "2.0.0" }
1616
serde.workspace = true
1717
alloy.workspace = true
1818
anyhow.workspace = true

tap_core/CHANGELOG.md

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

3+
## [2.0.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v1.0.0...tap_core-v2.0.0) (2024-10-30)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* add context to checks
9+
* add retryable errors to checks
10+
11+
### Features
12+
13+
* add context to checks ([58a6a52](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/58a6a52eba8152ee3add27d10e59b9e10ab9a5f4))
14+
* add retryable errors to checks ([51f04cb](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/51f04cb0dbe7387ffd94f16eb59bbeb1c6c51680))
15+
* expected_rav to become result<rav,error> ([70fa8fa](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/70fa8fa116c32b074f5c691979de02177b385560))
16+
* make error public access on failed receipt ([7180b86](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/7180b86e2c5ef5e2009518d6cd2ed8fe16b337eb))
17+
* obtain invalid receipts ([101dc5e](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/101dc5eea45baf143c5135fe66bbb5f62dfa9109))
18+
19+
20+
### Bug Fixes
21+
22+
* Remove obtain_invalid_receipts ([ad255dc](https://github.com/semiotic-ai/timeline-aggregation-protocol/commit/ad255dcbb4a5ea101c575038534312b59e12d693))
23+
324
## [1.0.0](https://github.com/semiotic-ai/timeline-aggregation-protocol/compare/tap_core-v0.8.0...tap_core-v1.0.0) (2024-03-27)
425

526

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 = "1.0.0"
3+
version = "2.0.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.10"
3+
version = "0.1.11"
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 = "*" }
13+
tap_core = { path = "../tap_core", version = "2.0.0" }
1414
rand.workspace = true
1515
anyhow.workspace = true
1616
tokio.workspace = true

0 commit comments

Comments
 (0)