From 461ade01df3658335520e5f1fbf008b9e5e042f5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2024 07:44:06 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 10 +++++----- Cargo.toml | 10 +++++----- crates/derive/CHANGELOG.md | 6 ++++++ crates/derive/Cargo.toml | 2 +- crates/driver/CHANGELOG.md | 6 ++++++ crates/driver/Cargo.toml | 2 +- crates/executor/CHANGELOG.md | 6 ++++++ crates/executor/Cargo.toml | 2 +- crates/mpt/CHANGELOG.md | 6 ++++++ crates/mpt/Cargo.toml | 2 +- crates/proof-sdk/proof/CHANGELOG.md | 6 ++++++ crates/proof-sdk/proof/Cargo.toml | 2 +- 12 files changed, 45 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ea8f2861a..c85ed2133 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2377,7 +2377,7 @@ dependencies = [ [[package]] name = "kona-derive" -version = "0.2.0" +version = "0.2.1" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2401,7 +2401,7 @@ dependencies = [ [[package]] name = "kona-driver" -version = "0.2.0" +version = "0.2.1" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2418,7 +2418,7 @@ dependencies = [ [[package]] name = "kona-executor" -version = "0.2.0" +version = "0.2.1" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2479,7 +2479,7 @@ dependencies = [ [[package]] name = "kona-mpt" -version = "0.1.1" +version = "0.1.2" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2516,7 +2516,7 @@ dependencies = [ [[package]] name = "kona-proof" -version = "0.2.0" +version = "0.2.1" dependencies = [ "alloy-consensus", "alloy-eips", diff --git a/Cargo.toml b/Cargo.toml index cabe4b7d4..fa7f89f37 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,12 +62,12 @@ lto = "fat" [workspace.dependencies] # Workspace -kona-mpt = { path = "crates/mpt", version = "0.1.1", default-features = false } +kona-mpt = { path = "crates/mpt", version = "0.1.2", default-features = false } kona-client = { path = "bin/client", version = "0.1.0", default-features = false } -kona-derive = { path = "crates/derive", version = "0.2.0", default-features = false } -kona-driver = { path = "crates/driver", version = "0.2.0", default-features = false } -kona-executor = { path = "crates/executor", version = "0.2.0", default-features = false } -kona-proof = { path = "crates/proof-sdk/proof", version = "0.2.0", default-features = false } +kona-derive = { path = "crates/derive", version = "0.2.1", default-features = false } +kona-driver = { path = "crates/driver", version = "0.2.1", default-features = false } +kona-executor = { path = "crates/executor", version = "0.2.1", default-features = false } +kona-proof = { path = "crates/proof-sdk/proof", version = "0.2.1", default-features = false } kona-std-fpvm = { path = "crates/proof-sdk/std-fpvm", version = "0.1.1", default-features = false } kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.2.0", default-features = false } kona-std-fpvm-proc = { path = "crates/proof-sdk/std-fpvm-proc", version = "0.1.1", default-features = false } diff --git a/crates/derive/CHANGELOG.md b/crates/derive/CHANGELOG.md index 30f89fab4..bde23aa99 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.1](https://github.com/hashcashier/kona/compare/kona-derive-v0.2.0...kona-derive-v0.2.1) - 2024-12-18 + +### Other + +- patch for rust 1.81 + ## [0.2.0](https://github.com/anton-rs/kona/compare/kona-derive-v0.1.0...kona-derive-v0.2.0) - 2024-12-03 ### Added diff --git a/crates/derive/Cargo.toml b/crates/derive/Cargo.toml index 7da5a04f6..65a6fa62e 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.0" +version = "0.2.1" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/driver/CHANGELOG.md b/crates/driver/CHANGELOG.md index 4da62fad1..e7e32f3a9 100644 --- a/crates/driver/CHANGELOG.md +++ b/crates/driver/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/hashcashier/kona/compare/kona-driver-v0.2.0...kona-driver-v0.2.1) - 2024-12-18 + +### Other + +- update Cargo.toml dependencies + ## [0.2.0](https://github.com/anton-rs/kona/compare/kona-driver-v0.1.0...kona-driver-v0.2.0) - 2024-12-03 ### Added diff --git a/crates/driver/Cargo.toml b/crates/driver/Cargo.toml index 84d325d80..9cee831f0 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.0" +version = "0.2.1" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/executor/CHANGELOG.md b/crates/executor/CHANGELOG.md index 830ea36cb..88ed01bec 100644 --- a/crates/executor/CHANGELOG.md +++ b/crates/executor/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/hashcashier/kona/compare/kona-executor-v0.2.0...kona-executor-v0.2.1) - 2024-12-18 + +### Other + +- update Cargo.toml dependencies + ## [0.2.0](https://github.com/anton-rs/kona/compare/kona-executor-v0.1.0...kona-executor-v0.2.0) - 2024-12-03 ### Added diff --git a/crates/executor/Cargo.toml b/crates/executor/Cargo.toml index d197b9b75..07385414a 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.0" +version = "0.2.1" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/mpt/CHANGELOG.md b/crates/mpt/CHANGELOG.md index 20e72abff..6acddeaa5 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.2](https://github.com/hashcashier/kona/compare/kona-mpt-v0.1.1...kona-mpt-v0.1.2) - 2024-12-18 + +### Other + +- update Cargo.toml dependencies + ## [0.1.1](https://github.com/anton-rs/kona/compare/kona-mpt-v0.1.0...kona-mpt-v0.1.1) - 2024-12-03 ### Other diff --git a/crates/mpt/Cargo.toml b/crates/mpt/Cargo.toml index 8466ae3ee..0e4e5ebf3 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.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 08d41cf45..5fee258bf 100644 --- a/crates/proof-sdk/proof/CHANGELOG.md +++ b/crates/proof-sdk/proof/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/hashcashier/kona/compare/kona-proof-v0.2.0...kona-proof-v0.2.1) - 2024-12-18 + +### Other + +- update Cargo.toml dependencies + ## [0.2.0](https://github.com/anton-rs/kona/compare/kona-proof-v0.1.0...kona-proof-v0.2.0) - 2024-12-03 ### Added diff --git a/crates/proof-sdk/proof/Cargo.toml b/crates/proof-sdk/proof/Cargo.toml index 6b6af2290..375d19ef4 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.0" +version = "0.2.1" edition.workspace = true authors.workspace = true license.workspace = true