From 7694d382592f6ad53b732c9c80486a8c4f06c36a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 18 Feb 2025 21:43:52 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 22 ++++++++++---------- Cargo.toml | 22 ++++++++++---------- crates/proof/executor/CHANGELOG.md | 6 ++++++ crates/proof/executor/Cargo.toml | 2 +- crates/proof/mpt/CHANGELOG.md | 6 ++++++ crates/proof/mpt/Cargo.toml | 2 +- crates/proof/preimage/CHANGELOG.md | 6 ++++++ crates/proof/preimage/Cargo.toml | 2 +- crates/proof/proof-interop/CHANGELOG.md | 6 ++++++ crates/proof/proof-interop/Cargo.toml | 2 +- crates/proof/proof/CHANGELOG.md | 6 ++++++ crates/proof/proof/Cargo.toml | 2 +- crates/proof/std-fpvm-proc/CHANGELOG.md | 6 ++++++ crates/proof/std-fpvm-proc/Cargo.toml | 2 +- crates/proof/std-fpvm/CHANGELOG.md | 6 ++++++ crates/proof/std-fpvm/Cargo.toml | 2 +- crates/protocol/derive/CHANGELOG.md | 6 ++++++ crates/protocol/derive/Cargo.toml | 2 +- crates/protocol/driver/CHANGELOG.md | 6 ++++++ crates/protocol/driver/Cargo.toml | 2 +- crates/protocol/interop/CHANGELOG.md | 7 +++++++ crates/protocol/interop/Cargo.toml | 2 +- crates/services/providers-alloy/CHANGELOG.md | 15 +++++++++++++ crates/services/providers-alloy/Cargo.toml | 2 +- 24 files changed, 109 insertions(+), 33 deletions(-) create mode 100644 crates/services/providers-alloy/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index 69ebf5dbd..ec360be8e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3343,7 +3343,7 @@ dependencies = [ [[package]] name = "kona-derive" -version = "0.2.3" +version = "0.2.4" dependencies = [ "alloy-consensus", "alloy-eips", @@ -3368,7 +3368,7 @@ dependencies = [ [[package]] name = "kona-driver" -version = "0.2.3" +version = "0.2.4" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -3388,7 +3388,7 @@ dependencies = [ [[package]] name = "kona-executor" -version = "0.2.3" +version = "0.3.0" dependencies = [ "alloy-consensus", "alloy-eips", @@ -3465,7 +3465,7 @@ dependencies = [ [[package]] name = "kona-interop" -version = "0.1.1" +version = "0.2.0" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -3485,7 +3485,7 @@ dependencies = [ [[package]] name = "kona-mpt" -version = "0.1.2" +version = "0.2.0" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -3530,7 +3530,7 @@ dependencies = [ [[package]] name = "kona-preimage" -version = "0.2.1" +version = "0.2.2" dependencies = [ "alloy-primitives", "async-channel", @@ -3544,7 +3544,7 @@ dependencies = [ [[package]] name = "kona-proof" -version = "0.2.3" +version = "0.2.4" dependencies = [ "alloy-consensus", "alloy-eips", @@ -3573,7 +3573,7 @@ dependencies = [ [[package]] name = "kona-proof-interop" -version = "0.1.1" +version = "0.1.2" dependencies = [ "alloy-consensus", "alloy-eips", @@ -3601,7 +3601,7 @@ dependencies = [ [[package]] name = "kona-providers-alloy" -version = "0.1.0" +version = "0.1.1" dependencies = [ "alloy-consensus", "alloy-eips", @@ -3625,7 +3625,7 @@ dependencies = [ [[package]] name = "kona-std-fpvm" -version = "0.1.2" +version = "0.1.3" dependencies = [ "async-trait", "cfg-if", @@ -3637,7 +3637,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 b3b33d1ce..0743586d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -64,22 +64,22 @@ 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-net = { path = "crates/services/net", version = "0.1.0", default-features = false } -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..539f40229 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/succinctlabs/kona/compare/kona-executor-v0.2.3...kona-executor-v0.3.0) - 2025-02-18 + +### 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..025d510e5 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/succinctlabs/kona/compare/kona-mpt-v0.1.2...kona-mpt-v0.2.0) - 2025-02-18 + +### 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..600370272 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/succinctlabs/kona/compare/kona-preimage-v0.2.1...kona-preimage-v0.2.2) - 2025-02-18 + +### 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..bca4f7318 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/succinctlabs/kona/compare/kona-proof-interop-v0.1.1...kona-proof-interop-v0.1.2) - 2025-02-18 + +### 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..a891a7320 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/succinctlabs/kona/compare/kona-proof-v0.2.3...kona-proof-v0.2.4) - 2025-02-18 + +### 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..56677174d 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/succinctlabs/kona/compare/kona-std-fpvm-proc-v0.1.2...kona-std-fpvm-proc-v0.1.3) - 2025-02-18 + +### 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..f25a165ac 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/succinctlabs/kona/compare/kona-std-fpvm-v0.1.2...kona-std-fpvm-v0.1.3) - 2025-02-18 + +### 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..e98405477 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/succinctlabs/kona/compare/kona-derive-v0.2.3...kona-derive-v0.2.4) - 2025-02-18 + +### 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..eb1f1aa4e 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/succinctlabs/kona/compare/kona-driver-v0.2.3...kona-driver-v0.2.4) - 2025-02-18 + +### 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..d97ee63dc 100644 --- a/crates/protocol/interop/CHANGELOG.md +++ b/crates/protocol/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/succinctlabs/kona/compare/kona-interop-v0.1.1...kona-interop-v0.2.0) - 2025-02-18 + +### Other + +- *(services)* Networking Crate (#1032) +- 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..6664bbaed --- /dev/null +++ b/crates/services/providers-alloy/CHANGELOG.md @@ -0,0 +1,15 @@ +# 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/succinctlabs/kona/compare/kona-providers-alloy-v0.1.0...kona-providers-alloy-v0.1.1) - 2025-02-18 + +### Other + +- *(services)* Networking Crate (#1032) +- Restructure Kona to be more Extensible (#1031) diff --git a/crates/services/providers-alloy/Cargo.toml b/crates/services/providers-alloy/Cargo.toml index af69e3a06..16e6058ea 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" edition.workspace = true