Skip to content

Commit 7d66132

Browse files
fixes (op-rs#827)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 9e90c2d commit 7d66132

File tree

17 files changed

+129
-21
lines changed

17 files changed

+129
-21
lines changed

Diff for: Cargo.lock

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@ lto = "fat"
6262

6363
[workspace.dependencies]
6464
# Workspace
65-
kona-mpt = { path = "crates/mpt", version = "0.0.6", default-features = false }
65+
kona-mpt = { path = "crates/mpt", version = "0.0.7", default-features = false }
6666
kona-client = { path = "bin/client", version = "0.1.0", default-features = false }
67-
kona-derive = { path = "crates/derive", version = "0.0.6", default-features = false }
68-
kona-driver = { path = "crates/driver", version = "0.0.0", default-features = false }
69-
kona-executor = { path = "crates/executor", version = "0.0.5", default-features = false }
70-
kona-common = { path = "crates/proof-sdk/common", version = "0.0.4", default-features = false }
71-
kona-common-proc = { path = "crates/proof-sdk/common-proc", version = "0.0.5", default-features = false }
72-
kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.0.4", default-features = false }
67+
kona-derive = { path = "crates/derive", version = "0.0.7", default-features = false }
68+
kona-driver = { path = "crates/driver", version = "0.0.1", default-features = false }
69+
kona-executor = { path = "crates/executor", version = "0.0.6", default-features = false }
70+
kona-common = { path = "crates/proof-sdk/common", version = "0.0.5", default-features = false }
71+
kona-common-proc = { path = "crates/proof-sdk/common-proc", version = "0.0.6", default-features = false }
72+
kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.0.5", default-features = false }
7373
kona-proof = { path = "crates/proof-sdk/proof", version = "0.0.1", default-features = false }
7474

7575
# Alloy

Diff for: crates/derive/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.7](https://github.com/anton-rs/kona/compare/kona-derive-v0.0.6...kona-derive-v0.0.7) - 2024-11-20
10+
11+
### Added
12+
13+
- *(driver)* Abstract, Default Pipeline ([#796](https://github.com/anton-rs/kona/pull/796))
14+
15+
### Other
16+
17+
- *(derive)* remove batch reader ([#826](https://github.com/anton-rs/kona/pull/826))
18+
- op-alloy 0.6.8 ([#830](https://github.com/anton-rs/kona/pull/830))
19+
- *(driver)* use tracing macros ([#823](https://github.com/anton-rs/kona/pull/823))
20+
- *(deps)* op-alloy 0.6.7 ([#824](https://github.com/anton-rs/kona/pull/824))
21+
- v0.6.6 op-alloy ([#804](https://github.com/anton-rs/kona/pull/804))
22+
- *(workspace)* Migrate back to `thiserror` v2 ([#811](https://github.com/anton-rs/kona/pull/811))
23+
- *(derive)* Re-export types ([#790](https://github.com/anton-rs/kona/pull/790))
24+
- Revert "chore: bump alloy deps ([#788](https://github.com/anton-rs/kona/pull/788))" ([#791](https://github.com/anton-rs/kona/pull/791))
25+
926
## [0.0.6](https://github.com/anton-rs/kona/compare/kona-derive-v0.0.5...kona-derive-v0.0.6) - 2024-11-06
1027

1128
### Added

Diff for: crates/derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kona-derive"
33
description = "A no_std derivation pipeline implementation for the OP Stack"
4-
version = "0.0.6"
4+
version = "0.0.7"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

Diff for: crates/driver/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.0.1](https://github.com/anton-rs/kona/compare/kona-driver-v0.0.0...kona-driver-v0.0.1) - 2024-11-20
11+
12+
### Added
13+
14+
- *(driver,client)* Pipeline Cursor Refactor ([#798](https://github.com/anton-rs/kona/pull/798))
15+
- *(driver)* Abstract, Default Pipeline ([#796](https://github.com/anton-rs/kona/pull/796))
16+
17+
### Fixed
18+
19+
- imports ([#829](https://github.com/anton-rs/kona/pull/829))
20+
- *(client)* SyncStart Refactor ([#797](https://github.com/anton-rs/kona/pull/797))
21+
22+
### Other
23+
24+
- *(driver)* use tracing macros ([#823](https://github.com/anton-rs/kona/pull/823))
25+
- *(driver)* use tracing macros ([#822](https://github.com/anton-rs/kona/pull/822))
26+
- *(workspace)* Migrate back to `thiserror` v2 ([#811](https://github.com/anton-rs/kona/pull/811))

Diff for: crates/driver/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kona-driver"
33
description = "A no_std derivation pipeline driver"
4-
version = "0.0.0"
4+
version = "0.0.1"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

Diff for: crates/executor/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.6](https://github.com/anton-rs/kona/compare/kona-executor-v0.0.5...kona-executor-v0.0.6) - 2024-11-20
10+
11+
### Added
12+
13+
- *(mpt)* Extend `TrieProvider` in `kona-executor` ([#813](https://github.com/anton-rs/kona/pull/813))
14+
15+
### Other
16+
17+
- *(driver)* use tracing macros ([#823](https://github.com/anton-rs/kona/pull/823))
18+
- *(workspace)* Migrate back to `thiserror` v2 ([#811](https://github.com/anton-rs/kona/pull/811))
19+
920
## [0.0.5](https://github.com/anton-rs/kona/compare/kona-executor-v0.0.4...kona-executor-v0.0.5) - 2024-11-06
1021

1122
### Added

Diff for: crates/executor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kona-executor"
33
description = "An no_std implementation of a stateless L2 block executor for the OP Stack."
4-
version = "0.0.5"
4+
version = "0.0.6"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

Diff for: crates/mpt/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.7](https://github.com/anton-rs/kona/compare/kona-mpt-v0.0.6...kona-mpt-v0.0.7) - 2024-11-20
10+
11+
### Added
12+
13+
- *(mpt)* Extend `TrieProvider` in `kona-executor` ([#813](https://github.com/anton-rs/kona/pull/813))
14+
15+
### Fixed
16+
17+
- *(mpt)* Remove unnused collapse ([#808](https://github.com/anton-rs/kona/pull/808))
18+
19+
### Other
20+
21+
- v0.6.6 op-alloy ([#804](https://github.com/anton-rs/kona/pull/804))
22+
- *(workspace)* Migrate back to `thiserror` v2 ([#811](https://github.com/anton-rs/kona/pull/811))
23+
- Revert "chore: bump alloy deps ([#788](https://github.com/anton-rs/kona/pull/788))" ([#791](https://github.com/anton-rs/kona/pull/791))
24+
925
## [0.0.6](https://github.com/anton-rs/kona/compare/kona-mpt-v0.0.5...kona-mpt-v0.0.6) - 2024-11-06
1026

1127
### Added

Diff for: crates/mpt/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kona-mpt"
33
description = "Utilities for interacting with and iterating through a merkle patricia trie"
4-
version = "0.0.6"
4+
version = "0.0.7"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

Diff for: crates/proof-sdk/common-proc/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.6](https://github.com/anton-rs/kona/compare/kona-common-proc-v0.0.5...kona-common-proc-v0.0.6) - 2024-11-20
10+
11+
### Other
12+
13+
- updated the following local packages: kona-common
14+
915
## [0.0.5](https://github.com/anton-rs/kona/compare/kona-common-proc-v0.0.4...kona-common-proc-v0.0.5) - 2024-11-06
1016

1117
### Added

Diff for: crates/proof-sdk/common-proc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kona-common-proc"
33
description = "Proc macro extension for the `kona-common` crate."
4-
version = "0.0.5"
4+
version = "0.0.6"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

Diff for: crates/proof-sdk/common/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.5](https://github.com/anton-rs/kona/compare/kona-common-v0.0.4...kona-common-v0.0.5) - 2024-11-20
10+
11+
### Other
12+
13+
- *(workspace)* Reorganize SDK ([#816](https://github.com/anton-rs/kona/pull/816))
14+
915
## [0.0.4](https://github.com/anton-rs/kona/compare/kona-common-v0.0.3...kona-common-v0.0.4) - 2024-10-25
1016

1117
### Added

Diff for: crates/proof-sdk/common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kona-common"
33
description = "Common traits and system interfaces for developing client programs on top of Fault Proof VMs."
4-
version = "0.0.4"
4+
version = "0.0.5"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

Diff for: crates/proof-sdk/preimage/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.5](https://github.com/anton-rs/kona/compare/kona-preimage-v0.0.4...kona-preimage-v0.0.5) - 2024-11-20
10+
11+
### Added
12+
13+
- *(preimage)* Decouple from `kona-common` ([#817](https://github.com/anton-rs/kona/pull/817))
14+
15+
### Other
16+
17+
- *(driver)* use tracing macros ([#823](https://github.com/anton-rs/kona/pull/823))
18+
- *(workspace)* Reorganize SDK ([#816](https://github.com/anton-rs/kona/pull/816))
19+
920
## [0.0.4](https://github.com/anton-rs/kona/compare/kona-preimage-v0.0.3...kona-preimage-v0.0.4) - 2024-10-25
1021

1122
### Added

Diff for: crates/proof-sdk/preimage/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kona-preimage"
33
description = "Bindings and types for interacting with the PreimageOracle ABI"
4-
version = "0.0.4"
4+
version = "0.0.5"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

Diff for: crates/proof-sdk/proof/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.0.1](https://github.com/anton-rs/kona/releases/tag/kona-proof-v0.0.1) - 2024-11-20
10+
11+
### Added
12+
13+
- *(workspace)* `kona-proof` ([#818](https://github.com/anton-rs/kona/pull/818))
14+
15+
### Fixed
16+
17+
- imports ([#829](https://github.com/anton-rs/kona/pull/829))
18+
19+
### Other
20+
21+
- op-alloy 0.6.8 ([#830](https://github.com/anton-rs/kona/pull/830))
22+
- *(driver)* use tracing macros ([#823](https://github.com/anton-rs/kona/pull/823))
23+
924
## [0.0.4](https://github.com/anton-rs/kona/compare/kona-common-v0.0.3...kona-common-v0.0.4) - 2024-10-25
1025

1126
### Added

0 commit comments

Comments
 (0)