From d37da7f2fcbf1af22d52da22ba085fca1848092e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Jan 2025 16:47:03 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 16 ++++++++-------- crates/derive/CHANGELOG.md | 6 ++++++ crates/derive/Cargo.toml | 2 +- crates/driver/CHANGELOG.md | 7 +++++++ crates/driver/Cargo.toml | 2 +- crates/executor/CHANGELOG.md | 10 ++++++++++ crates/executor/Cargo.toml | 2 +- crates/interop/CHANGELOG.md | 6 ++++++ crates/interop/Cargo.toml | 2 +- crates/mpt/CHANGELOG.md | 6 ++++++ crates/mpt/Cargo.toml | 2 +- crates/proof-sdk/proof-interop/CHANGELOG.md | 7 +++++++ crates/proof-sdk/proof-interop/Cargo.toml | 2 +- crates/proof-sdk/proof/CHANGELOG.md | 8 ++++++++ crates/proof-sdk/proof/Cargo.toml | 2 +- crates/proof-sdk/std-fpvm-proc/CHANGELOG.md | 6 ++++++ crates/proof-sdk/std-fpvm-proc/Cargo.toml | 2 +- 18 files changed, 80 insertions(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 180276d4..f1b50d84 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2378,7 +2378,7 @@ dependencies = [ [[package]] name = "kona-derive" -version = "0.2.3" +version = "0.2.4" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2403,7 +2403,7 @@ dependencies = [ [[package]] name = "kona-driver" -version = "0.2.3" +version = "0.2.4" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2421,7 +2421,7 @@ dependencies = [ [[package]] name = "kona-executor" -version = "0.2.3" +version = "0.2.4" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2484,7 +2484,7 @@ dependencies = [ [[package]] name = "kona-interop" -version = "0.1.1" +version = "0.2.0" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2501,7 +2501,7 @@ dependencies = [ [[package]] name = "kona-mpt" -version = "0.1.2" +version = "0.1.3" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2537,7 +2537,7 @@ dependencies = [ [[package]] name = "kona-proof" -version = "0.2.3" +version = "0.2.4" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2565,7 +2565,7 @@ dependencies = [ [[package]] name = "kona-proof-interop" -version = "0.1.1" +version = "0.1.2" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2601,7 +2601,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 0e4f95ec..edf7ea0a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,17 +63,17 @@ lto = "fat" [workspace.dependencies] # Workspace -kona-mpt = { path = "crates/mpt", version = "0.1.2", default-features = false } +kona-mpt = { path = "crates/mpt", version = "0.1.3", default-features = false } kona-client = { path = "bin/client", version = "0.1.0", 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-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-derive = { path = "crates/derive", version = "0.2.4", default-features = false } +kona-driver = { path = "crates/driver", version = "0.2.4", 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.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-std-fpvm-proc = { path = "crates/proof-sdk/std-fpvm-proc", version = "0.1.3", default-features = false } # Maili maili-consensus = { version = "0.1.6", default-features = false } diff --git a/crates/derive/CHANGELOG.md b/crates/derive/CHANGELOG.md index 8d974792..ce5a13d5 100644 --- a/crates/derive/CHANGELOG.md +++ b/crates/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-01-22 + +### Added + +- *(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 ef16e6c6..0166b7b1 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..a6b56485 100644 --- a/crates/driver/CHANGELOG.md +++ b/crates/driver/CHANGELOG.md @@ -7,6 +7,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-driver-v0.2.3...kona-driver-v0.2.4) - 2025-01-22 + +### Added + +- *(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 4d412d9b..a2a23752 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..aee0a091 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.2.4](https://github.com/op-rs/kona/compare/kona-executor-v0.2.3...kona-executor-v0.2.4) - 2025-01-22 + +### Added + +- *(host)* Interop proof support (part 1) (#910) + +### Other + +- *(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 76a27954..415f7445 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..15e81291 100644 --- a/crates/interop/CHANGELOG.md +++ b/crates/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-01-22 + +### Added + +- *(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..1953bccc 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-22 + +### 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/proof-interop/CHANGELOG.md b/crates/proof-sdk/proof-interop/CHANGELOG.md index 15c0ae82..b37499ff 100644 --- a/crates/proof-sdk/proof-interop/CHANGELOG.md +++ b/crates/proof-sdk/proof-interop/CHANGELOG.md @@ -7,6 +7,13 @@ 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-22 + +### Added + +- *(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..8ede2bd7 100644 --- a/crates/proof-sdk/proof/CHANGELOG.md +++ b/crates/proof-sdk/proof/CHANGELOG.md @@ -6,6 +6,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-proof-v0.2.3...kona-proof-v0.2.4) - 2025-01-22 + +### Added + +- *(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 72585b46..c5933818 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..e2959f3b 100644 --- a/crates/proof-sdk/std-fpvm-proc/CHANGELOG.md +++ b/crates/proof-sdk/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-01-22 + +### 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