diff --git a/Cargo.lock b/Cargo.lock index d7a7ff5af9..ed877f3016 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2315,7 +2315,7 @@ dependencies = [ [[package]] name = "kona-common" -version = "0.0.3" +version = "0.0.4" dependencies = [ "cfg-if", "linked_list_allocator", @@ -2324,7 +2324,7 @@ dependencies = [ [[package]] name = "kona-common-proc" -version = "0.0.3" +version = "0.0.4" dependencies = [ "anyhow", "cfg-if", @@ -2336,7 +2336,7 @@ dependencies = [ [[package]] name = "kona-derive" -version = "0.0.3" +version = "0.0.4" dependencies = [ "alloc-no-stdlib", "alloy-consensus", @@ -2376,7 +2376,7 @@ dependencies = [ [[package]] name = "kona-executor" -version = "0.0.2" +version = "0.0.3" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2437,7 +2437,7 @@ dependencies = [ [[package]] name = "kona-mpt" -version = "0.0.3" +version = "0.0.4" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2462,7 +2462,7 @@ dependencies = [ [[package]] name = "kona-preimage" -version = "0.0.3" +version = "0.0.4" dependencies = [ "alloy-primitives", "async-trait", @@ -2477,7 +2477,7 @@ dependencies = [ [[package]] name = "kona-primitives" -version = "0.0.2" +version = "0.0.3" dependencies = [ "alloy-consensus", "alloy-eips", diff --git a/Cargo.toml b/Cargo.toml index 7e9f230d87..ee03030f1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,13 +38,13 @@ lto = "fat" [workspace.dependencies] # Workspace kona-client = { path = "bin/client", version = "0.1.0" } -kona-mpt = { path = "crates/mpt", version = "0.0.3" } -kona-common = { path = "crates/common", version = "0.0.3" } -kona-preimage = { path = "crates/preimage", version = "0.0.3" } -kona-executor = { path = "crates/executor", version = "0.0.2" } -kona-common-proc = { path = "crates/common-proc", version = "0.0.3" } -kona-derive = { path = "crates/derive", version = "0.0.3", default-features = false } -kona-primitives = { path = "crates/primitives", version = "0.0.2", default-features = false } +kona-mpt = { path = "crates/mpt", version = "0.0.4" } +kona-common = { path = "crates/common", version = "0.0.4" } +kona-preimage = { path = "crates/preimage", version = "0.0.4" } +kona-executor = { path = "crates/executor", version = "0.0.3" } +kona-common-proc = { path = "crates/common-proc", version = "0.0.4" } +kona-derive = { path = "crates/derive", version = "0.0.4", default-features = false } +kona-primitives = { path = "crates/primitives", version = "0.0.3", default-features = false } # General anyhow = { version = "1.0.86", default-features = false } diff --git a/crates/common-proc/CHANGELOG.md b/crates/common-proc/CHANGELOG.md index 0039770d6a..1959a62943 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.4](https://github.com/anton-rs/kona/compare/kona-common-proc-v0.0.3...kona-common-proc-v0.0.4) - 2024-09-21 + +### Other + +- updated the following local packages: kona-common + ## [0.0.3](https://github.com/anton-rs/kona/compare/kona-common-proc-v0.0.2...kona-common-proc-v0.0.3) - 2024-09-04 ### Added diff --git a/crates/common-proc/Cargo.toml b/crates/common-proc/Cargo.toml index becf9ce300..5862be3032 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.3" +version = "0.0.4" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/common/CHANGELOG.md b/crates/common/CHANGELOG.md index 0b8eaeff7e..5fa1a1dd13 100644 --- a/crates/common/CHANGELOG.md +++ b/crates/common/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/anton-rs/kona/compare/kona-common-v0.0.3...kona-common-v0.0.4) - 2024-09-21 + +### Added + +- *(preimage/common)* Migrate to `thiserror` ([#543](https://github.com/anton-rs/kona/pull/543)) + ## [0.0.3](https://github.com/anton-rs/kona/compare/kona-common-v0.0.2...kona-common-v0.0.3) - 2024-09-04 ### Added diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml index 50922992e8..6d79701efb 100644 --- a/crates/common/Cargo.toml +++ b/crates/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.3" +version = "0.0.4" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/derive/CHANGELOG.md b/crates/derive/CHANGELOG.md index 06d9f2bbd8..a95a14630d 100644 --- a/crates/derive/CHANGELOG.md +++ b/crates/derive/CHANGELOG.md @@ -6,6 +6,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/anton-rs/kona/compare/kona-derive-v0.0.3...kona-derive-v0.0.4) - 2024-09-21 + +### Added + +- *(derive)* Typed error handling ([#540](https://github.com/anton-rs/kona/pull/540)) +- *(primitives)* Remove Attributes ([#529](https://github.com/anton-rs/kona/pull/529)) +- large dependency update ([#528](https://github.com/anton-rs/kona/pull/528)) +- *(primitives)* reuse op-alloy-protocol channel and block types ([#499](https://github.com/anton-rs/kona/pull/499)) + +### Fixed + +- *(client)* Channel reader error handling ([#539](https://github.com/anton-rs/kona/pull/539)) +- *(derive)* Sequence window expiry ([#532](https://github.com/anton-rs/kona/pull/532)) +- *(primitives)* use consensus hardforks ([#497](https://github.com/anton-rs/kona/pull/497)) +- *(primitives)* re-use op-alloy frame type ([#492](https://github.com/anton-rs/kona/pull/492)) + +### Other + +- Bumps Dependency Versions ([#520](https://github.com/anton-rs/kona/pull/520)) +- *(primitives)* rm RawTransaction ([#505](https://github.com/anton-rs/kona/pull/505)) + ## [0.0.3](https://github.com/anton-rs/kona/compare/kona-derive-v0.0.2...kona-derive-v0.0.3) - 2024-09-04 ### Added diff --git a/crates/derive/Cargo.toml b/crates/derive/Cargo.toml index 36572e9a19..566bc2eb04 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.3" +version = "0.0.4" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/executor/CHANGELOG.md b/crates/executor/CHANGELOG.md index dcd97baf9c..cc6a990a0e 100644 --- a/crates/executor/CHANGELOG.md +++ b/crates/executor/CHANGELOG.md @@ -6,6 +6,20 @@ 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-executor-v0.0.2...kona-executor-v0.0.3) - 2024-09-21 + +### Added + +- *(executor)* Migrate to `thiserror` ([#544](https://github.com/anton-rs/kona/pull/544)) +- *(mpt)* Migrate to `thiserror` ([#541](https://github.com/anton-rs/kona/pull/541)) +- *(primitives)* Remove Attributes ([#529](https://github.com/anton-rs/kona/pull/529)) +- large dependency update ([#528](https://github.com/anton-rs/kona/pull/528)) + +### Other + +- Bumps Dependency Versions ([#520](https://github.com/anton-rs/kona/pull/520)) +- *(primitives)* rm RawTransaction ([#505](https://github.com/anton-rs/kona/pull/505)) + ## [0.0.2](https://github.com/anton-rs/kona/compare/kona-executor-v0.0.1...kona-executor-v0.0.2) - 2024-09-04 ### Added diff --git a/crates/executor/Cargo.toml b/crates/executor/Cargo.toml index f1ea6f2cc2..7f81f24113 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.2" +version = "0.0.3" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/mpt/CHANGELOG.md b/crates/mpt/CHANGELOG.md index eaed568426..f7f430895e 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.4](https://github.com/anton-rs/kona/compare/kona-mpt-v0.0.3...kona-mpt-v0.0.4) - 2024-09-21 + +### Added + +- *(mpt)* Migrate to `thiserror` ([#541](https://github.com/anton-rs/kona/pull/541)) + +### Fixed + +- *(mpt)* Empty list walker ([#493](https://github.com/anton-rs/kona/pull/493)) + ## [0.0.3](https://github.com/anton-rs/kona/compare/kona-mpt-v0.0.2...kona-mpt-v0.0.3) - 2024-09-04 ### Added diff --git a/crates/mpt/Cargo.toml b/crates/mpt/Cargo.toml index a4f7ff67db..4a0d8e1bf6 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.3" +version = "0.0.4" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/preimage/CHANGELOG.md b/crates/preimage/CHANGELOG.md index 37eabecb85..59bd514202 100644 --- a/crates/preimage/CHANGELOG.md +++ b/crates/preimage/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.4](https://github.com/anton-rs/kona/compare/kona-preimage-v0.0.3...kona-preimage-v0.0.4) - 2024-09-21 + +### Added + +- *(preimage/common)* Migrate to `thiserror` ([#543](https://github.com/anton-rs/kona/pull/543)) + +### Fixed + +- *(preimage)* Improve error differentiation in preimage servers ([#535](https://github.com/anton-rs/kona/pull/535)) + ## [0.0.3](https://github.com/anton-rs/kona/compare/kona-preimage-v0.0.2...kona-preimage-v0.0.3) - 2024-09-04 ### Added diff --git a/crates/preimage/Cargo.toml b/crates/preimage/Cargo.toml index ab47a6bc0b..62bf4df2a8 100644 --- a/crates/preimage/Cargo.toml +++ b/crates/preimage/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-preimage" description = "Bindings and types for interacting with the PreimageOracle ABI" -version = "0.0.3" +version = "0.0.4" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index 6540861475..a3b839e465 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -6,6 +6,25 @@ 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-primitives-v0.0.2...kona-primitives-v0.0.3) - 2024-09-21 + +### Added + +- *(derive)* Typed error handling ([#540](https://github.com/anton-rs/kona/pull/540)) +- *(primitives)* Remove Attributes ([#529](https://github.com/anton-rs/kona/pull/529)) +- large dependency update ([#528](https://github.com/anton-rs/kona/pull/528)) +- *(primitives)* reuse op-alloy-protocol channel and block types ([#499](https://github.com/anton-rs/kona/pull/499)) + +### Fixed + +- *(primitives)* use consensus hardforks ([#497](https://github.com/anton-rs/kona/pull/497)) +- *(primitives)* re-use op-alloy frame type ([#492](https://github.com/anton-rs/kona/pull/492)) + +### Other + +- rm depo and import op::depo ([#518](https://github.com/anton-rs/kona/pull/518)) +- *(primitives)* rm RawTransaction ([#505](https://github.com/anton-rs/kona/pull/505)) + ## [0.0.2](https://github.com/anton-rs/kona/compare/kona-primitives-v0.0.1...kona-primitives-v0.0.2) - 2024-09-04 ### Added diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index e86406fd42..95a2959f9e 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-primitives" description = "Primitive types for kona crates" -version = "0.0.2" +version = "0.0.3" edition.workspace = true authors.workspace = true license.workspace = true