diff --git a/Cargo.lock b/Cargo.lock index d25360cd..50b9419a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2519,7 +2519,7 @@ dependencies = [ [[package]] name = "kona-derive" -version = "0.2.3" +version = "0.2.4" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2544,7 +2544,7 @@ dependencies = [ [[package]] name = "kona-driver" -version = "0.2.3" +version = "0.2.4" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2563,7 +2563,7 @@ dependencies = [ [[package]] name = "kona-executor" -version = "0.2.3" +version = "0.2.4" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2635,7 +2635,7 @@ dependencies = [ [[package]] name = "kona-interop" -version = "0.1.1" +version = "0.2.0" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2652,7 +2652,7 @@ dependencies = [ [[package]] name = "kona-mpt" -version = "0.1.2" +version = "0.1.3" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2674,7 +2674,7 @@ dependencies = [ [[package]] name = "kona-preimage" -version = "0.2.1" +version = "0.2.2" dependencies = [ "alloy-primitives", "async-channel", @@ -2688,7 +2688,7 @@ dependencies = [ [[package]] name = "kona-proof" -version = "0.2.3" +version = "0.2.4" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2717,7 +2717,7 @@ dependencies = [ [[package]] name = "kona-proof-interop" -version = "0.1.1" +version = "0.1.2" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2741,7 +2741,7 @@ dependencies = [ [[package]] name = "kona-providers-alloy" -version = "0.1.0" +version = "0.1.1" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2765,7 +2765,7 @@ dependencies = [ [[package]] name = "kona-std-fpvm" -version = "0.1.2" +version = "0.1.3" dependencies = [ "async-trait", "cfg-if", @@ -2777,7 +2777,7 @@ dependencies = [ [[package]] name = "kona-std-fpvm-proc" -version = "0.1.2" +version = "0.1.3" dependencies = [ "cfg-if", "kona-std-fpvm", diff --git a/Cargo.toml b/Cargo.toml index f4180aa4..163fde3d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -66,17 +66,17 @@ lto = "fat" # Workspace kona-host = { path = "bin/host", version = "0.1.0", default-features = false } kona-client = { path = "bin/client", version = "0.1.0", default-features = false } -kona-mpt = { path = "crates/mpt", version = "0.1.2", default-features = false } -kona-derive = { path = "crates/derive", version = "0.2.3", default-features = false } -kona-driver = { path = "crates/driver", version = "0.2.3", default-features = false } -kona-providers-alloy = { path = "crates/providers-alloy", version = "0.1.0", default-features = false } -kona-executor = { path = "crates/executor", version = "0.2.3", default-features = false } -kona-interop = { path = "crates/interop", version = "0.1.1", default-features = false } -kona-proof = { path = "crates/proof-sdk/proof", version = "0.2.3", default-features = false } -kona-proof-interop = { path = "crates/proof-sdk/proof-interop", version = "0.1.1", default-features = false } -kona-std-fpvm = { path = "crates/proof-sdk/std-fpvm", version = "0.1.2", default-features = false } -kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.2.1", default-features = false } -kona-std-fpvm-proc = { path = "crates/proof-sdk/std-fpvm-proc", version = "0.1.2", default-features = false } +kona-mpt = { path = "crates/mpt", version = "0.1.3", default-features = false } +kona-derive = { path = "crates/derive", version = "0.2.4", default-features = false } +kona-driver = { path = "crates/driver", version = "0.2.4", default-features = false } +kona-providers-alloy = { path = "crates/providers-alloy", version = "0.1.1", default-features = false } +kona-executor = { path = "crates/executor", version = "0.2.4", default-features = false } +kona-interop = { path = "crates/interop", version = "0.2.0", default-features = false } +kona-proof = { path = "crates/proof-sdk/proof", version = "0.2.4", default-features = false } +kona-proof-interop = { path = "crates/proof-sdk/proof-interop", version = "0.1.2", default-features = false } +kona-std-fpvm = { path = "crates/proof-sdk/std-fpvm", version = "0.1.3", default-features = false } +kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.2.2", default-features = false } +kona-std-fpvm-proc = { path = "crates/proof-sdk/std-fpvm-proc", version = "0.1.3", default-features = false } # Maili maili-rpc = { version = "0.1.9", default-features = false } diff --git a/crates/derive/CHANGELOG.md b/crates/derive/CHANGELOG.md index 8d974792..47ffbee3 100644 --- a/crates/derive/CHANGELOG.md +++ b/crates/derive/CHANGELOG.md @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.4](https://github.com/op-rs/kona/compare/kona-derive-v0.2.3...kona-derive-v0.2.4) - 2025-01-28 + +### Added + +- allow 7702 receipts after Isthmus active (#959) +- *(host)* Interop proof support (part 1) (#910) + ## [0.2.3](https://github.com/op-rs/kona/compare/kona-derive-v0.2.2...kona-derive-v0.2.3) - 2025-01-16 ### Other diff --git a/crates/derive/Cargo.toml b/crates/derive/Cargo.toml index 0bc4c47c..ae90261e 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.2.3" +version = "0.2.4" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/driver/CHANGELOG.md b/crates/driver/CHANGELOG.md index 36dc511b..37fbf3ff 100644 --- a/crates/driver/CHANGELOG.md +++ b/crates/driver/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.4](https://github.com/op-rs/kona/compare/kona-driver-v0.2.3...kona-driver-v0.2.4) - 2025-01-28 + +### Added + +- allow 7702 receipts after Isthmus active (#959) +- *(host)* Interop proof support (part 1) (#910) +- *(driver)* Multi-block derivation (#888) + ## [0.2.3](https://github.com/op-rs/kona/compare/kona-driver-v0.2.2...kona-driver-v0.2.3) - 2025-01-16 ### Added diff --git a/crates/driver/Cargo.toml b/crates/driver/Cargo.toml index 5fecc4c8..773e031a 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.2.3" +version = "0.2.4" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/executor/CHANGELOG.md b/crates/executor/CHANGELOG.md index 9a3e3f78..132fdb66 100644 --- a/crates/executor/CHANGELOG.md +++ b/crates/executor/CHANGELOG.md @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.4](https://github.com/op-rs/kona/compare/kona-executor-v0.2.3...kona-executor-v0.2.4) - 2025-01-28 + +### Added + +- fill eip 7702 tx env with auth list (#958) +- allow 7702 receipts after Isthmus active (#959) +- use empty requests hash when isthmus enabled (#951) +- *(executor)* New static test harness (#938) +- *(host)* Interop proof support (part 1) (#910) + +### Other + +- *(executor)* Remove `anyhow` dev-dependency (#937) +- *(mpt)* Remove `anyhow` dev-dependency (#919) + ## [0.2.3](https://github.com/op-rs/kona/compare/kona-executor-v0.2.2...kona-executor-v0.2.3) - 2025-01-16 ### Other diff --git a/crates/executor/Cargo.toml b/crates/executor/Cargo.toml index 63f1cdfd..69fbf52f 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.2.3" +version = "0.2.4" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/interop/CHANGELOG.md b/crates/interop/CHANGELOG.md index 69a19005..edcef084 100644 --- a/crates/interop/CHANGELOG.md +++ b/crates/interop/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0](https://github.com/op-rs/kona/compare/kona-interop-v0.1.1...kona-interop-v0.2.0) - 2025-01-28 + +### Added + +- allow 7702 receipts after Isthmus active (#959) +- *(client)* Interop consolidation sub-problem (#913) + ## [0.1.1](https://github.com/op-rs/kona/compare/kona-interop-v0.1.0...kona-interop-v0.1.1) - 2025-01-16 ### Other diff --git a/crates/interop/Cargo.toml b/crates/interop/Cargo.toml index 30d2ce8d..8dce3d81 100644 --- a/crates/interop/Cargo.toml +++ b/crates/interop/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-interop" description = "Core functionality and primitives for the Interop feature of the OP Stack." -version = "0.1.1" +version = "0.2.0" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/mpt/CHANGELOG.md b/crates/mpt/CHANGELOG.md index cf9307da..ed9753c2 100644 --- a/crates/mpt/CHANGELOG.md +++ b/crates/mpt/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/op-rs/kona/compare/kona-mpt-v0.1.2...kona-mpt-v0.1.3) - 2025-01-28 + +### Other + +- *(mpt)* Remove `anyhow` dev-dependency (#919) + ## [0.1.2](https://github.com/op-rs/kona/compare/kona-mpt-v0.1.1...kona-mpt-v0.1.2) - 2025-01-07 ### Fixed diff --git a/crates/mpt/Cargo.toml b/crates/mpt/Cargo.toml index 8931b5e8..98d7a720 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.1.2" +version = "0.1.3" 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 edb26a4b..26e2b0ba 100644 --- a/crates/proof-sdk/preimage/CHANGELOG.md +++ b/crates/proof-sdk/preimage/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.2](https://github.com/op-rs/kona/compare/kona-preimage-v0.2.1...kona-preimage-v0.2.2) - 2025-01-28 + +### Added + +- Derive Eq/Ord/Hash for (Archived) PreimageKey(Type) (#956) + ## [0.2.1](https://github.com/op-rs/kona/compare/kona-preimage-v0.2.0...kona-preimage-v0.2.1) - 2025-01-07 ### Fixed diff --git a/crates/proof-sdk/preimage/Cargo.toml b/crates/proof-sdk/preimage/Cargo.toml index 725d7a46..6fab0a20 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.2.1" +version = "0.2.2" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/proof-sdk/proof-interop/CHANGELOG.md b/crates/proof-sdk/proof-interop/CHANGELOG.md index 15c0ae82..14a82987 100644 --- a/crates/proof-sdk/proof-interop/CHANGELOG.md +++ b/crates/proof-sdk/proof-interop/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.2](https://github.com/op-rs/kona/compare/kona-proof-interop-v0.1.1...kona-proof-interop-v0.1.2) - 2025-01-28 + +### Added + +- allow 7702 receipts after Isthmus active (#959) +- *(client)* Interop consolidation sub-problem (#913) +- *(host)* Interop proof support (part 1) (#910) + ## [0.1.1](https://github.com/op-rs/kona/compare/kona-proof-interop-v0.1.0...kona-proof-interop-v0.1.1) - 2025-01-16 ### Other diff --git a/crates/proof-sdk/proof-interop/Cargo.toml b/crates/proof-sdk/proof-interop/Cargo.toml index 4db5c018..35e89cf5 100644 --- a/crates/proof-sdk/proof-interop/Cargo.toml +++ b/crates/proof-sdk/proof-interop/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-proof-interop" description = "OP Stack Proof SDK with Interop support" -version = "0.1.1" +version = "0.1.2" 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 191bfc75..e5601b6c 100644 --- a/crates/proof-sdk/proof/CHANGELOG.md +++ b/crates/proof-sdk/proof/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.4](https://github.com/op-rs/kona/compare/kona-proof-v0.2.3...kona-proof-v0.2.4) - 2025-01-28 + +### Added + +- allow 7702 receipts after Isthmus active (#959) +- *(client)* Interop consolidation sub-problem (#913) +- *(host)* Interop proof support (part 1) (#910) +- *(driver)* Multi-block derivation (#888) + ## [0.2.3](https://github.com/op-rs/kona/compare/kona-proof-v0.2.2...kona-proof-v0.2.3) - 2025-01-16 ### Added diff --git a/crates/proof-sdk/proof/Cargo.toml b/crates/proof-sdk/proof/Cargo.toml index 55b6f955..e93110dc 100644 --- a/crates/proof-sdk/proof/Cargo.toml +++ b/crates/proof-sdk/proof/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-proof" description = "OP Stack Proof SDK" -version = "0.2.3" +version = "0.2.4" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/proof-sdk/std-fpvm-proc/CHANGELOG.md b/crates/proof-sdk/std-fpvm-proc/CHANGELOG.md index e0b24f04..6533adcf 100644 --- a/crates/proof-sdk/std-fpvm-proc/CHANGELOG.md +++ b/crates/proof-sdk/std-fpvm-proc/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/op-rs/kona/compare/kona-std-fpvm-proc-v0.1.2...kona-std-fpvm-proc-v0.1.3) - 2025-01-28 + +### Added + +- *(build)* Migrate to `mips64r2` target for `cannon` (#943) + +### Other + +- *(mpt)* Remove `anyhow` dev-dependency (#919) + ## [0.1.2](https://github.com/op-rs/kona/compare/kona-std-fpvm-proc-v0.1.1...kona-std-fpvm-proc-v0.1.2) - 2025-01-07 ### Fixed diff --git a/crates/proof-sdk/std-fpvm-proc/Cargo.toml b/crates/proof-sdk/std-fpvm-proc/Cargo.toml index ffb5cdea..7e1708b2 100644 --- a/crates/proof-sdk/std-fpvm-proc/Cargo.toml +++ b/crates/proof-sdk/std-fpvm-proc/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-std-fpvm-proc" description = "Proc macro entry point for `kona-std-fpvm` targeted programs." -version = "0.1.2" +version = "0.1.3" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/proof-sdk/std-fpvm/CHANGELOG.md b/crates/proof-sdk/std-fpvm/CHANGELOG.md index 980b2e91..2dcbae7f 100644 --- a/crates/proof-sdk/std-fpvm/CHANGELOG.md +++ b/crates/proof-sdk/std-fpvm/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/op-rs/kona/compare/kona-std-fpvm-v0.1.2...kona-std-fpvm-v0.1.3) - 2025-01-28 + +### Added + +- *(build)* Migrate to `mips64r2` target for `cannon` (#943) + ## [0.1.2](https://github.com/op-rs/kona/compare/kona-std-fpvm-v0.1.1...kona-std-fpvm-v0.1.2) - 2025-01-07 ### Added diff --git a/crates/proof-sdk/std-fpvm/Cargo.toml b/crates/proof-sdk/std-fpvm/Cargo.toml index d46b76c3..ae1c575a 100644 --- a/crates/proof-sdk/std-fpvm/Cargo.toml +++ b/crates/proof-sdk/std-fpvm/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-std-fpvm" description = "Platform specific APIs for interacting with Fault Proof VM kernels." -version = "0.1.2" +version = "0.1.3" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/providers-alloy/CHANGELOG.md b/crates/providers-alloy/CHANGELOG.md new file mode 100644 index 00000000..8c92a39e --- /dev/null +++ b/crates/providers-alloy/CHANGELOG.md @@ -0,0 +1,14 @@ +# 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.1.1](https://github.com/op-rs/kona/compare/kona-providers-alloy-v0.1.0...kona-providers-alloy-v0.1.1) - 2025-01-28 + +### Added + +- allow 7702 receipts after Isthmus active (#959) diff --git a/crates/providers-alloy/Cargo.toml b/crates/providers-alloy/Cargo.toml index b43d00f7..39f07833 100644 --- a/crates/providers-alloy/Cargo.toml +++ b/crates/providers-alloy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kona-providers-alloy" -version = "0.1.0" +version = "0.1.1" description = "Alloy-backed providers for hilo" edition.workspace = true