From f6c61c63d5c0d927c58f98a8c7d606d467f920cd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 21:55:30 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 8 ++++---- Cargo.toml | 8 ++++---- 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/proof-sdk/proof-interop/CHANGELOG.md | 14 ++++++++++++++ crates/proof-sdk/proof/CHANGELOG.md | 6 ++++++ crates/proof-sdk/proof/Cargo.toml | 2 +- 11 files changed, 50 insertions(+), 12 deletions(-) create mode 100644 crates/proof-sdk/proof-interop/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index 438c6f74..c4e34205 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2372,7 +2372,7 @@ dependencies = [ [[package]] name = "kona-derive" -version = "0.2.2" +version = "0.2.3" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2396,7 +2396,7 @@ dependencies = [ [[package]] name = "kona-driver" -version = "0.2.2" +version = "0.2.3" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2413,7 +2413,7 @@ dependencies = [ [[package]] name = "kona-executor" -version = "0.2.2" +version = "0.2.3" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2528,7 +2528,7 @@ dependencies = [ [[package]] name = "kona-proof" -version = "0.2.2" +version = "0.2.3" dependencies = [ "alloy-consensus", "alloy-eips", diff --git a/Cargo.toml b/Cargo.toml index 65fd3acf..2e4b1fa3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -65,11 +65,11 @@ lto = "fat" # Workspace 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.2", default-features = false } -kona-driver = { path = "crates/driver", version = "0.2.2", default-features = false } -kona-executor = { path = "crates/executor", version = "0.2.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-executor = { path = "crates/executor", version = "0.2.3", default-features = false } kona-interop = { path = "crates/interop", version = "0.1.0", default-features = false } -kona-proof = { path = "crates/proof-sdk/proof", version = "0.2.2", 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.0", 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 } diff --git a/crates/derive/CHANGELOG.md b/crates/derive/CHANGELOG.md index bb4f08c2..b684df65 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.3](https://github.com/op-rs/kona/compare/kona-derive-v0.2.2...kona-derive-v0.2.3) - 2025-01-14 + +### Other + +- update Cargo.lock dependencies + ## [0.2.2](https://github.com/op-rs/kona/compare/kona-derive-v0.2.1...kona-derive-v0.2.2) - 2025-01-13 ### Other diff --git a/crates/derive/Cargo.toml b/crates/derive/Cargo.toml index 52554046..770cf59c 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.2" +version = "0.2.3" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/driver/CHANGELOG.md b/crates/driver/CHANGELOG.md index c3cc3356..ca2b81e7 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.3](https://github.com/op-rs/kona/compare/kona-driver-v0.2.2...kona-driver-v0.2.3) - 2025-01-14 + +### Other + +- update Cargo.lock dependencies + ## [0.2.2](https://github.com/op-rs/kona/compare/kona-driver-v0.2.1...kona-driver-v0.2.2) - 2025-01-13 ### Other diff --git a/crates/driver/Cargo.toml b/crates/driver/Cargo.toml index 46c13aed..ef3c4938 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.2" +version = "0.2.3" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/executor/CHANGELOG.md b/crates/executor/CHANGELOG.md index 3f00cbe1..4f20b5f1 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.3](https://github.com/op-rs/kona/compare/kona-executor-v0.2.2...kona-executor-v0.2.3) - 2025-01-14 + +### Other + +- update Cargo.lock dependencies + ## [0.2.2](https://github.com/op-rs/kona/compare/kona-executor-v0.2.1...kona-executor-v0.2.2) - 2025-01-13 ### Other diff --git a/crates/executor/Cargo.toml b/crates/executor/Cargo.toml index efa1cf68..d40dfc1c 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.2" +version = "0.2.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 new file mode 100644 index 00000000..482315af --- /dev/null +++ b/crates/proof-sdk/proof-interop/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.0](https://github.com/op-rs/kona/releases/tag/kona-proof-interop-v0.1.0) - 2025-01-14 + +### Added + +- *(workspace)* `kona-proof-interop` crate (#902) diff --git a/crates/proof-sdk/proof/CHANGELOG.md b/crates/proof-sdk/proof/CHANGELOG.md index 91d74ef5..c4d67c03 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.3](https://github.com/op-rs/kona/compare/kona-proof-v0.2.2...kona-proof-v0.2.3) - 2025-01-14 + +### Other + +- update Cargo.lock dependencies + ## [0.2.2](https://github.com/op-rs/kona/compare/kona-proof-v0.2.1...kona-proof-v0.2.2) - 2025-01-13 ### Other diff --git a/crates/proof-sdk/proof/Cargo.toml b/crates/proof-sdk/proof/Cargo.toml index d8e408b7..3c2e9c6c 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.2" +version = "0.2.3" edition.workspace = true authors.workspace = true license.workspace = true