diff --git a/Cargo.lock b/Cargo.lock index 0630b1821..c4baf3a6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2556,7 +2556,7 @@ dependencies = [ [[package]] name = "kona-derive" -version = "0.2.3" +version = "0.2.4" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2581,7 +2581,7 @@ dependencies = [ [[package]] name = "kona-driver" -version = "0.2.3" +version = "0.2.4" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2601,7 +2601,7 @@ dependencies = [ [[package]] name = "kona-executor" -version = "0.2.3" +version = "0.3.0" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2678,7 +2678,7 @@ dependencies = [ [[package]] name = "kona-interop" -version = "0.1.1" +version = "0.2.0" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2698,7 +2698,7 @@ dependencies = [ [[package]] name = "kona-mpt" -version = "0.1.2" +version = "0.2.0" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2720,7 +2720,7 @@ dependencies = [ [[package]] name = "kona-preimage" -version = "0.2.1" +version = "0.2.2" dependencies = [ "alloy-primitives", "async-channel", @@ -2734,7 +2734,7 @@ dependencies = [ [[package]] name = "kona-proof" -version = "0.2.3" +version = "0.2.4" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2763,7 +2763,7 @@ dependencies = [ [[package]] name = "kona-proof-interop" -version = "0.1.1" +version = "0.1.2" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2791,7 +2791,7 @@ dependencies = [ [[package]] name = "kona-providers-alloy" -version = "0.1.0" +version = "0.1.1" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2815,7 +2815,7 @@ dependencies = [ [[package]] name = "kona-std-fpvm" -version = "0.1.2" +version = "0.1.3" dependencies = [ "async-trait", "cfg-if", @@ -2827,7 +2827,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 7b979679b..42aa3e8b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -64,21 +64,21 @@ kona-host = { path = "bin/host", version = "0.1.0", default-features = false } kona-client = { path = "bin/client", version = "0.1.0", default-features = false } # Workspace Protocol -kona-derive = { path = "crates/protocol/derive", version = "0.2.3", default-features = false } -kona-driver = { path = "crates/protocol/driver", version = "0.2.3", default-features = false } -kona-interop = { path = "crates/protocol/interop", version = "0.1.1", default-features = false } +kona-derive = { path = "crates/protocol/derive", version = "0.2.4", default-features = false } +kona-driver = { path = "crates/protocol/driver", version = "0.2.4", default-features = false } +kona-interop = { path = "crates/protocol/interop", version = "0.2.0", default-features = false } # Workspace Services -kona-providers-alloy = { path = "crates/services/providers-alloy", version = "0.1.0", default-features = false } +kona-providers-alloy = { path = "crates/services/providers-alloy", version = "0.1.1", default-features = false } # Workspace Proof -kona-mpt = { path = "crates/proof/mpt", version = "0.1.2", default-features = false } -kona-proof = { path = "crates/proof/proof", version = "0.2.3", default-features = false } -kona-executor = { path = "crates/proof/executor", version = "0.2.3", default-features = false } -kona-std-fpvm = { path = "crates/proof/std-fpvm", version = "0.1.2", default-features = false } -kona-preimage = { path = "crates/proof/preimage", version = "0.2.1", default-features = false } -kona-std-fpvm-proc = { path = "crates/proof/std-fpvm-proc", version = "0.1.2", default-features = false } -kona-proof-interop = { path = "crates/proof/proof-interop", version = "0.1.1", default-features = false } +kona-mpt = { path = "crates/proof/mpt", version = "0.2.0", default-features = false } +kona-proof = { path = "crates/proof/proof", version = "0.2.4", default-features = false } +kona-executor = { path = "crates/proof/executor", version = "0.3.0", default-features = false } +kona-std-fpvm = { path = "crates/proof/std-fpvm", version = "0.1.3", default-features = false } +kona-preimage = { path = "crates/proof/preimage", version = "0.2.2", default-features = false } +kona-std-fpvm-proc = { path = "crates/proof/std-fpvm-proc", version = "0.1.3", default-features = false } +kona-proof-interop = { path = "crates/proof/proof-interop", version = "0.1.2", default-features = false } # Maili maili-rpc = { version = "0.2.8", default-features = false } diff --git a/crates/proof/executor/CHANGELOG.md b/crates/proof/executor/CHANGELOG.md index 9a3e3f788..95c301891 100644 --- a/crates/proof/executor/CHANGELOG.md +++ b/crates/proof/executor/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/op-rs/kona/compare/kona-executor-v0.2.3...kona-executor-v0.3.0) - 2025-02-13 + +### Other + +- Restructure Kona to be more Extensible (#1031) + ## [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/proof/executor/Cargo.toml b/crates/proof/executor/Cargo.toml index 0d3788d32..d808b377a 100644 --- a/crates/proof/executor/Cargo.toml +++ b/crates/proof/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.3.0" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/proof/mpt/CHANGELOG.md b/crates/proof/mpt/CHANGELOG.md index cf9307da9..f28ef32f7 100644 --- a/crates/proof/mpt/CHANGELOG.md +++ b/crates/proof/mpt/CHANGELOG.md @@ -6,6 +6,12 @@ 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-mpt-v0.1.2...kona-mpt-v0.2.0) - 2025-02-13 + +### Other + +- Restructure Kona to be more Extensible (#1031) + ## [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/proof/mpt/Cargo.toml b/crates/proof/mpt/Cargo.toml index 8931b5e89..b981b8441 100644 --- a/crates/proof/mpt/Cargo.toml +++ b/crates/proof/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.2.0" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/proof/preimage/CHANGELOG.md b/crates/proof/preimage/CHANGELOG.md index edb26a4b8..0d707ca9b 100644 --- a/crates/proof/preimage/CHANGELOG.md +++ b/crates/proof/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-02-13 + +### Other + +- Restructure Kona to be more Extensible (#1031) + ## [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/preimage/Cargo.toml b/crates/proof/preimage/Cargo.toml index 725d7a460..6fab0a202 100644 --- a/crates/proof/preimage/Cargo.toml +++ b/crates/proof/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/proof-interop/CHANGELOG.md b/crates/proof/proof-interop/CHANGELOG.md index 15c0ae820..8bd950172 100644 --- a/crates/proof/proof-interop/CHANGELOG.md +++ b/crates/proof/proof-interop/CHANGELOG.md @@ -7,6 +7,12 @@ 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-02-13 + +### Other + +- Restructure Kona to be more Extensible (#1031) + ## [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/proof-interop/Cargo.toml b/crates/proof/proof-interop/Cargo.toml index ebceec3cb..68c56ac40 100644 --- a/crates/proof/proof-interop/Cargo.toml +++ b/crates/proof/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/proof/CHANGELOG.md b/crates/proof/proof/CHANGELOG.md index 191bfc755..c8466dd02 100644 --- a/crates/proof/proof/CHANGELOG.md +++ b/crates/proof/proof/CHANGELOG.md @@ -6,6 +6,12 @@ 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-02-13 + +### Other + +- Restructure Kona to be more Extensible (#1031) + ## [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/proof/Cargo.toml b/crates/proof/proof/Cargo.toml index 55b6f9557..e93110dc6 100644 --- a/crates/proof/proof/Cargo.toml +++ b/crates/proof/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/std-fpvm-proc/CHANGELOG.md b/crates/proof/std-fpvm-proc/CHANGELOG.md index e0b24f048..92cae99f9 100644 --- a/crates/proof/std-fpvm-proc/CHANGELOG.md +++ b/crates/proof/std-fpvm-proc/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-proc-v0.1.2...kona-std-fpvm-proc-v0.1.3) - 2025-02-13 + +### Other + +- Restructure Kona to be more Extensible (#1031) + ## [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/std-fpvm-proc/Cargo.toml b/crates/proof/std-fpvm-proc/Cargo.toml index ffb5cdead..7e1708b2b 100644 --- a/crates/proof/std-fpvm-proc/Cargo.toml +++ b/crates/proof/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/std-fpvm/CHANGELOG.md b/crates/proof/std-fpvm/CHANGELOG.md index 980b2e917..0caf8f161 100644 --- a/crates/proof/std-fpvm/CHANGELOG.md +++ b/crates/proof/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-02-13 + +### Other + +- Restructure Kona to be more Extensible (#1031) + ## [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/std-fpvm/Cargo.toml b/crates/proof/std-fpvm/Cargo.toml index d46b76c30..ae1c575ac 100644 --- a/crates/proof/std-fpvm/Cargo.toml +++ b/crates/proof/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/protocol/derive/CHANGELOG.md b/crates/protocol/derive/CHANGELOG.md index 8d9747929..0561c6813 100644 --- a/crates/protocol/derive/CHANGELOG.md +++ b/crates/protocol/derive/CHANGELOG.md @@ -6,6 +6,12 @@ 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-02-13 + +### Other + +- Restructure Kona to be more Extensible (#1031) + ## [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/protocol/derive/Cargo.toml b/crates/protocol/derive/Cargo.toml index 0bc4c47c1..ae90261e3 100644 --- a/crates/protocol/derive/Cargo.toml +++ b/crates/protocol/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/protocol/driver/CHANGELOG.md b/crates/protocol/driver/CHANGELOG.md index 36dc511b5..a41de199f 100644 --- a/crates/protocol/driver/CHANGELOG.md +++ b/crates/protocol/driver/CHANGELOG.md @@ -7,6 +7,12 @@ 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-02-13 + +### Other + +- Restructure Kona to be more Extensible (#1031) + ## [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/protocol/driver/Cargo.toml b/crates/protocol/driver/Cargo.toml index 155cdd444..f8ef1f52d 100644 --- a/crates/protocol/driver/Cargo.toml +++ b/crates/protocol/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/protocol/interop/CHANGELOG.md b/crates/protocol/interop/CHANGELOG.md index 69a190052..5f8db0534 100644 --- a/crates/protocol/interop/CHANGELOG.md +++ b/crates/protocol/interop/CHANGELOG.md @@ -7,6 +7,12 @@ 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-02-13 + +### Other + +- Restructure Kona to be more Extensible (#1031) + ## [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/protocol/interop/Cargo.toml b/crates/protocol/interop/Cargo.toml index 401c8f602..88414993d 100644 --- a/crates/protocol/interop/Cargo.toml +++ b/crates/protocol/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/services/providers-alloy/CHANGELOG.md b/crates/services/providers-alloy/CHANGELOG.md new file mode 100644 index 000000000..9ee20c37c --- /dev/null +++ b/crates/services/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-02-13 + +### Other + +- Restructure Kona to be more Extensible (#1031) diff --git a/crates/services/providers-alloy/Cargo.toml b/crates/services/providers-alloy/Cargo.toml index b43d00f79..39f078331 100644 --- a/crates/services/providers-alloy/Cargo.toml +++ b/crates/services/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