diff --git a/Cargo.lock b/Cargo.lock index af264d459..e53788578 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2369,7 +2369,7 @@ dependencies = [ [[package]] name = "kona-common-proc" -version = "0.0.4" +version = "0.0.5" dependencies = [ "anyhow", "cfg-if", @@ -2381,7 +2381,7 @@ dependencies = [ [[package]] name = "kona-derive" -version = "0.0.5" +version = "0.0.6" dependencies = [ "alloc-no-stdlib", "alloy-consensus", @@ -2407,7 +2407,7 @@ dependencies = [ [[package]] name = "kona-derive-alloy" -version = "0.0.2" +version = "0.0.3" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2436,7 +2436,7 @@ dependencies = [ [[package]] name = "kona-executor" -version = "0.0.4" +version = "0.0.5" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2496,7 +2496,7 @@ dependencies = [ [[package]] name = "kona-mpt" -version = "0.0.5" +version = "0.0.6" dependencies = [ "alloy-consensus", "alloy-primitives", diff --git a/Cargo.toml b/Cargo.toml index ea04c8121..9dd3448ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,14 +55,14 @@ lto = "fat" [workspace.dependencies] # Workspace -kona-mpt = { path = "crates/mpt", version = "0.0.5", default-features = false } +kona-mpt = { path = "crates/mpt", version = "0.0.6", default-features = false } kona-client = { path = "bin/client", version = "0.1.0", default-features = false } kona-common = { path = "crates/common", version = "0.0.4", default-features = false } -kona-derive = { path = "crates/derive", version = "0.0.5", default-features = false } +kona-derive = { path = "crates/derive", version = "0.0.6", default-features = false } kona-preimage = { path = "crates/preimage", version = "0.0.4", default-features = false } -kona-executor = { path = "crates/executor", version = "0.0.4", default-features = false } -kona-common-proc = { path = "crates/common-proc", version = "0.0.4", default-features = false } -kona-derive-alloy = { path = "crates/derive-alloy", version = "0.0.2", default-features = false } +kona-executor = { path = "crates/executor", version = "0.0.5", default-features = false } +kona-common-proc = { path = "crates/common-proc", version = "0.0.5", default-features = false } +kona-derive-alloy = { path = "crates/derive-alloy", version = "0.0.3", default-features = false } # Alloy alloy-rlp = { version = "0.3.9", default-features = false } diff --git a/crates/common-proc/CHANGELOG.md b/crates/common-proc/CHANGELOG.md index e7a34fa15..9fc2904fb 100644 --- a/crates/common-proc/CHANGELOG.md +++ b/crates/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.5](https://github.com/anton-rs/kona/compare/kona-common-proc-v0.0.4...kona-common-proc-v0.0.5) - 2024-11-06 + +### Added + +- *(client)* Remove `anyhow` ([#779](https://github.com/anton-rs/kona/pull/779)) + ## [0.0.4](https://github.com/anton-rs/kona/compare/kona-common-proc-v0.0.3...kona-common-proc-v0.0.4) - 2024-10-25 ### Other diff --git a/crates/common-proc/Cargo.toml b/crates/common-proc/Cargo.toml index 3c3d6273b..6b645ec9d 100644 --- a/crates/common-proc/Cargo.toml +++ b/crates/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.4" +version = "0.0.5" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/derive-alloy/CHANGELOG.md b/crates/derive-alloy/CHANGELOG.md index a479c5899..be814694c 100644 --- a/crates/derive-alloy/CHANGELOG.md +++ b/crates/derive-alloy/CHANGELOG.md @@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.3](https://github.com/anton-rs/kona/compare/kona-derive-alloy-v0.0.2...kona-derive-alloy-v0.0.3) - 2024-11-06 + +### Added + +- *(derive)* `From for PipelineErrorKind` ([#780](https://github.com/anton-rs/kona/pull/780)) + +### Fixed + +- *(derive-alloy)* test coverage ([#785](https://github.com/anton-rs/kona/pull/785)) +- *(derive)* Data Availability Provider Abstraction ([#782](https://github.com/anton-rs/kona/pull/782)) +- *(client)* Trace extension support ([#778](https://github.com/anton-rs/kona/pull/778)) +- *(derive-alloy)* changelog ([#752](https://github.com/anton-rs/kona/pull/752)) + +### Other + +- bump alloy deps ([#788](https://github.com/anton-rs/kona/pull/788)) +- *(derive-alloy)* docs ([#763](https://github.com/anton-rs/kona/pull/763)) + ## [0.0.2](https://github.com/anton-rs/kona/compare/kona-derive-alloy-v0.0.1...kona-derive-alloy-v0.0.2) - 2024-10-29 ### Added diff --git a/crates/derive-alloy/Cargo.toml b/crates/derive-alloy/Cargo.toml index 30121f0b8..40be5c530 100644 --- a/crates/derive-alloy/Cargo.toml +++ b/crates/derive-alloy/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-derive-alloy" description = "An alloy-backed derivation pipeline for the OP Stack, built on `kona-derive`" -version = "0.0.2" +version = "0.0.3" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/derive/CHANGELOG.md b/crates/derive/CHANGELOG.md index fcacda5ee..f41378867 100644 --- a/crates/derive/CHANGELOG.md +++ b/crates/derive/CHANGELOG.md @@ -6,6 +6,30 @@ 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-derive-v0.0.5...kona-derive-v0.0.6) - 2024-11-06 + +### Added + +- *(derive)* `From for PipelineErrorKind` ([#780](https://github.com/anton-rs/kona/pull/780)) +- *(client)* Remove `anyhow` ([#779](https://github.com/anton-rs/kona/pull/779)) +- *(derive)* sources docs ([#754](https://github.com/anton-rs/kona/pull/754)) + +### Fixed + +- *(derive)* Data Availability Provider Abstraction ([#782](https://github.com/anton-rs/kona/pull/782)) +- *(derive)* hoist types out of traits ([#781](https://github.com/anton-rs/kona/pull/781)) +- *(client)* Trace extension support ([#778](https://github.com/anton-rs/kona/pull/778)) +- *(derive)* use signal value updated with system config. ([#776](https://github.com/anton-rs/kona/pull/776)) + +### Other + +- bump alloy deps ([#788](https://github.com/anton-rs/kona/pull/788)) +- *(derive)* pipeline error test coverage ([#784](https://github.com/anton-rs/kona/pull/784)) +- Only fill blob data when there is no calldata ([#764](https://github.com/anton-rs/kona/pull/764)) +- *(derive)* touchup kona-derive readme ([#762](https://github.com/anton-rs/kona/pull/762)) +- *(derive)* Error Exports ([#758](https://github.com/anton-rs/kona/pull/758)) +- *(derive)* Cleanup Exports ([#757](https://github.com/anton-rs/kona/pull/757)) + ## [0.0.5](https://github.com/anton-rs/kona/compare/kona-derive-v0.0.4...kona-derive-v0.0.5) - 2024-10-29 ### Added diff --git a/crates/derive/Cargo.toml b/crates/derive/Cargo.toml index 0b2279161..6599df15a 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.5" +version = "0.0.6" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/executor/CHANGELOG.md b/crates/executor/CHANGELOG.md index f9b7c4f7c..eb6e6cbcf 100644 --- a/crates/executor/CHANGELOG.md +++ b/crates/executor/CHANGELOG.md @@ -6,6 +6,16 @@ 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-executor-v0.0.4...kona-executor-v0.0.5) - 2024-11-06 + +### Added + +- *(TrieProvider)* Abstract TrieNode retrieval ([#787](https://github.com/anton-rs/kona/pull/787)) + +### Other + +- *(executor)* rm upstream util ([#755](https://github.com/anton-rs/kona/pull/755)) + ## [0.0.4](https://github.com/anton-rs/kona/compare/kona-executor-v0.0.3...kona-executor-v0.0.4) - 2024-10-29 ### Other diff --git a/crates/executor/Cargo.toml b/crates/executor/Cargo.toml index 3ae890b69..601f5f424 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.4" +version = "0.0.5" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/mpt/CHANGELOG.md b/crates/mpt/CHANGELOG.md index 87c7ca45e..83cc965df 100644 --- a/crates/mpt/CHANGELOG.md +++ b/crates/mpt/CHANGELOG.md @@ -6,6 +6,16 @@ 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-mpt-v0.0.5...kona-mpt-v0.0.6) - 2024-11-06 + +### Added + +- *(TrieProvider)* Abstract TrieNode retrieval ([#787](https://github.com/anton-rs/kona/pull/787)) + +### Other + +- bump alloy deps ([#788](https://github.com/anton-rs/kona/pull/788)) + ## [0.0.5](https://github.com/anton-rs/kona/compare/kona-mpt-v0.0.4...kona-mpt-v0.0.5) - 2024-10-29 ### Fixed diff --git a/crates/mpt/Cargo.toml b/crates/mpt/Cargo.toml index f8c735ef6..5d5eb087e 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.5" +version = "0.0.6" edition.workspace = true authors.workspace = true license.workspace = true