diff --git a/Cargo.lock b/Cargo.lock index 8a4dea762..5ba962057 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2335,7 +2335,7 @@ dependencies = [ [[package]] name = "kona-common" -version = "0.0.4" +version = "0.0.5" dependencies = [ "cfg-if", "linked_list_allocator", @@ -2344,7 +2344,7 @@ dependencies = [ [[package]] name = "kona-common-proc" -version = "0.0.5" +version = "0.0.6" dependencies = [ "anyhow", "cfg-if", @@ -2356,7 +2356,7 @@ dependencies = [ [[package]] name = "kona-derive" -version = "0.0.6" +version = "0.0.7" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2381,7 +2381,7 @@ dependencies = [ [[package]] name = "kona-driver" -version = "0.0.0" +version = "0.0.1" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2398,7 +2398,7 @@ dependencies = [ [[package]] name = "kona-executor" -version = "0.0.5" +version = "0.0.6" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2461,7 +2461,7 @@ dependencies = [ [[package]] name = "kona-mpt" -version = "0.0.6" +version = "0.0.7" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2484,7 +2484,7 @@ dependencies = [ [[package]] name = "kona-preimage" -version = "0.0.4" +version = "0.0.5" dependencies = [ "alloy-primitives", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index 8a00678eb..b9882b160 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,14 +62,14 @@ lto = "fat" [workspace.dependencies] # Workspace -kona-mpt = { path = "crates/mpt", version = "0.0.6", default-features = false } +kona-mpt = { path = "crates/mpt", version = "0.0.7", default-features = false } kona-client = { path = "bin/client", version = "0.1.0", default-features = false } -kona-derive = { path = "crates/derive", version = "0.0.6", default-features = false } -kona-driver = { path = "crates/driver", version = "0.0.0", default-features = false } -kona-executor = { path = "crates/executor", version = "0.0.5", default-features = false } -kona-common = { path = "crates/proof-sdk/common", version = "0.0.4", default-features = false } -kona-common-proc = { path = "crates/proof-sdk/common-proc", version = "0.0.5", default-features = false } -kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.0.4", default-features = false } +kona-derive = { path = "crates/derive", version = "0.0.7", default-features = false } +kona-driver = { path = "crates/driver", version = "0.0.1", default-features = false } +kona-executor = { path = "crates/executor", version = "0.0.6", default-features = false } +kona-common = { path = "crates/proof-sdk/common", version = "0.0.5", default-features = false } +kona-common-proc = { path = "crates/proof-sdk/common-proc", version = "0.0.6", default-features = false } +kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.0.5", default-features = false } kona-proof = { path = "crates/proof-sdk/proof", version = "0.0.1", default-features = false } # Alloy diff --git a/crates/derive/CHANGELOG.md b/crates/derive/CHANGELOG.md index f41378867..7bd7b8fe5 100644 --- a/crates/derive/CHANGELOG.md +++ b/crates/derive/CHANGELOG.md @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.7](https://github.com/anton-rs/kona/compare/kona-derive-v0.0.6...kona-derive-v0.0.7) - 2024-11-20 + +### Added + +- *(driver)* Abstract, Default Pipeline ([#796](https://github.com/anton-rs/kona/pull/796)) + +### Other + +- *(derive)* remove batch reader ([#826](https://github.com/anton-rs/kona/pull/826)) +- op-alloy 0.6.8 ([#830](https://github.com/anton-rs/kona/pull/830)) +- *(driver)* use tracing macros ([#823](https://github.com/anton-rs/kona/pull/823)) +- *(deps)* op-alloy 0.6.7 ([#824](https://github.com/anton-rs/kona/pull/824)) +- v0.6.6 op-alloy ([#804](https://github.com/anton-rs/kona/pull/804)) +- *(workspace)* Migrate back to `thiserror` v2 ([#811](https://github.com/anton-rs/kona/pull/811)) +- *(derive)* Re-export types ([#790](https://github.com/anton-rs/kona/pull/790)) +- Revert "chore: bump alloy deps ([#788](https://github.com/anton-rs/kona/pull/788))" ([#791](https://github.com/anton-rs/kona/pull/791)) + ## [0.0.6](https://github.com/anton-rs/kona/compare/kona-derive-v0.0.5...kona-derive-v0.0.6) - 2024-11-06 ### Added diff --git a/crates/derive/Cargo.toml b/crates/derive/Cargo.toml index fba8a6f03..d89e267e8 100644 --- a/crates/derive/Cargo.toml +++ b/crates/derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-derive" description = "A no_std derivation pipeline implementation for the OP Stack" -version = "0.0.6" +version = "0.0.7" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/driver/CHANGELOG.md b/crates/driver/CHANGELOG.md new file mode 100644 index 000000000..d2abb6da2 --- /dev/null +++ b/crates/driver/CHANGELOG.md @@ -0,0 +1,26 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.0.1](https://github.com/anton-rs/kona/compare/kona-driver-v0.0.0...kona-driver-v0.0.1) - 2024-11-20 + +### Added + +- *(driver,client)* Pipeline Cursor Refactor ([#798](https://github.com/anton-rs/kona/pull/798)) +- *(driver)* Abstract, Default Pipeline ([#796](https://github.com/anton-rs/kona/pull/796)) + +### Fixed + +- imports ([#829](https://github.com/anton-rs/kona/pull/829)) +- *(client)* SyncStart Refactor ([#797](https://github.com/anton-rs/kona/pull/797)) + +### Other + +- *(driver)* use tracing macros ([#823](https://github.com/anton-rs/kona/pull/823)) +- *(driver)* use tracing macros ([#822](https://github.com/anton-rs/kona/pull/822)) +- *(workspace)* Migrate back to `thiserror` v2 ([#811](https://github.com/anton-rs/kona/pull/811)) diff --git a/crates/driver/Cargo.toml b/crates/driver/Cargo.toml index d94ee5bbc..434738988 100644 --- a/crates/driver/Cargo.toml +++ b/crates/driver/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-driver" description = "A no_std derivation pipeline driver" -version = "0.0.0" +version = "0.0.1" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/executor/CHANGELOG.md b/crates/executor/CHANGELOG.md index eb6e6cbcf..da1fc8300 100644 --- a/crates/executor/CHANGELOG.md +++ b/crates/executor/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.6](https://github.com/anton-rs/kona/compare/kona-executor-v0.0.5...kona-executor-v0.0.6) - 2024-11-20 + +### Added + +- *(mpt)* Extend `TrieProvider` in `kona-executor` ([#813](https://github.com/anton-rs/kona/pull/813)) + +### Other + +- *(driver)* use tracing macros ([#823](https://github.com/anton-rs/kona/pull/823)) +- *(workspace)* Migrate back to `thiserror` v2 ([#811](https://github.com/anton-rs/kona/pull/811)) + ## [0.0.5](https://github.com/anton-rs/kona/compare/kona-executor-v0.0.4...kona-executor-v0.0.5) - 2024-11-06 ### Added diff --git a/crates/executor/Cargo.toml b/crates/executor/Cargo.toml index db06da89a..2ba14a487 100644 --- a/crates/executor/Cargo.toml +++ b/crates/executor/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-executor" description = "An no_std implementation of a stateless L2 block executor for the OP Stack." -version = "0.0.5" +version = "0.0.6" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/mpt/CHANGELOG.md b/crates/mpt/CHANGELOG.md index 83cc965df..0d5e06a9e 100644 --- a/crates/mpt/CHANGELOG.md +++ b/crates/mpt/CHANGELOG.md @@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.7](https://github.com/anton-rs/kona/compare/kona-mpt-v0.0.6...kona-mpt-v0.0.7) - 2024-11-20 + +### Added + +- *(mpt)* Extend `TrieProvider` in `kona-executor` ([#813](https://github.com/anton-rs/kona/pull/813)) + +### Fixed + +- *(mpt)* Remove unnused collapse ([#808](https://github.com/anton-rs/kona/pull/808)) + +### Other + +- v0.6.6 op-alloy ([#804](https://github.com/anton-rs/kona/pull/804)) +- *(workspace)* Migrate back to `thiserror` v2 ([#811](https://github.com/anton-rs/kona/pull/811)) +- Revert "chore: bump alloy deps ([#788](https://github.com/anton-rs/kona/pull/788))" ([#791](https://github.com/anton-rs/kona/pull/791)) + ## [0.0.6](https://github.com/anton-rs/kona/compare/kona-mpt-v0.0.5...kona-mpt-v0.0.6) - 2024-11-06 ### Added diff --git a/crates/mpt/Cargo.toml b/crates/mpt/Cargo.toml index fb31e2263..7139c915f 100644 --- a/crates/mpt/Cargo.toml +++ b/crates/mpt/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-mpt" description = "Utilities for interacting with and iterating through a merkle patricia trie" -version = "0.0.6" +version = "0.0.7" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/proof-sdk/common-proc/CHANGELOG.md b/crates/proof-sdk/common-proc/CHANGELOG.md index 9fc2904fb..a943e2ccb 100644 --- a/crates/proof-sdk/common-proc/CHANGELOG.md +++ b/crates/proof-sdk/common-proc/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [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 + +### Other + +- updated the following local packages: kona-common + ## [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 ### Added diff --git a/crates/proof-sdk/common-proc/Cargo.toml b/crates/proof-sdk/common-proc/Cargo.toml index 6b645ec9d..2c99ee0bd 100644 --- a/crates/proof-sdk/common-proc/Cargo.toml +++ b/crates/proof-sdk/common-proc/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-common-proc" description = "Proc macro extension for the `kona-common` crate." -version = "0.0.5" +version = "0.0.6" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/proof-sdk/common/CHANGELOG.md b/crates/proof-sdk/common/CHANGELOG.md index c9fe9ccaf..789a820ae 100644 --- a/crates/proof-sdk/common/CHANGELOG.md +++ b/crates/proof-sdk/common/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.5](https://github.com/anton-rs/kona/compare/kona-common-v0.0.4...kona-common-v0.0.5) - 2024-11-20 + +### Other + +- *(workspace)* Reorganize SDK ([#816](https://github.com/anton-rs/kona/pull/816)) + ## [0.0.4](https://github.com/anton-rs/kona/compare/kona-common-v0.0.3...kona-common-v0.0.4) - 2024-10-25 ### Added diff --git a/crates/proof-sdk/common/Cargo.toml b/crates/proof-sdk/common/Cargo.toml index 8dfcf2cf3..bd553a2cc 100644 --- a/crates/proof-sdk/common/Cargo.toml +++ b/crates/proof-sdk/common/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-common" description = "Common traits and system interfaces for developing client programs on top of Fault Proof VMs." -version = "0.0.4" +version = "0.0.5" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/proof-sdk/preimage/CHANGELOG.md b/crates/proof-sdk/preimage/CHANGELOG.md index 4c7140470..d45131f1f 100644 --- a/crates/proof-sdk/preimage/CHANGELOG.md +++ b/crates/proof-sdk/preimage/CHANGELOG.md @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.5](https://github.com/anton-rs/kona/compare/kona-preimage-v0.0.4...kona-preimage-v0.0.5) - 2024-11-20 + +### Added + +- *(preimage)* Decouple from `kona-common` ([#817](https://github.com/anton-rs/kona/pull/817)) + +### Other + +- *(driver)* use tracing macros ([#823](https://github.com/anton-rs/kona/pull/823)) +- *(workspace)* Reorganize SDK ([#816](https://github.com/anton-rs/kona/pull/816)) + ## [0.0.4](https://github.com/anton-rs/kona/compare/kona-preimage-v0.0.3...kona-preimage-v0.0.4) - 2024-10-25 ### Added diff --git a/crates/proof-sdk/preimage/Cargo.toml b/crates/proof-sdk/preimage/Cargo.toml index 4f41cf1e5..4e6df2eea 100644 --- a/crates/proof-sdk/preimage/Cargo.toml +++ b/crates/proof-sdk/preimage/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-preimage" description = "Bindings and types for interacting with the PreimageOracle ABI" -version = "0.0.4" +version = "0.0.5" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/proof-sdk/proof/CHANGELOG.md b/crates/proof-sdk/proof/CHANGELOG.md index c9fe9ccaf..c15fd2f12 100644 --- a/crates/proof-sdk/proof/CHANGELOG.md +++ b/crates/proof-sdk/proof/CHANGELOG.md @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.1](https://github.com/anton-rs/kona/releases/tag/kona-proof-v0.0.1) - 2024-11-20 + +### Added + +- *(workspace)* `kona-proof` ([#818](https://github.com/anton-rs/kona/pull/818)) + +### Fixed + +- imports ([#829](https://github.com/anton-rs/kona/pull/829)) + +### Other + +- op-alloy 0.6.8 ([#830](https://github.com/anton-rs/kona/pull/830)) +- *(driver)* use tracing macros ([#823](https://github.com/anton-rs/kona/pull/823)) + ## [0.0.4](https://github.com/anton-rs/kona/compare/kona-common-v0.0.3...kona-common-v0.0.4) - 2024-10-25 ### Added