From 24213af5b440b3487c20d2be5bd8ab003905fe26 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 29 Oct 2024 20:28:19 +0000 Subject: [PATCH] chore: release (#749) * chore: release * small readme change --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: refcell --- Cargo.lock | 8 ++++---- Cargo.toml | 8 ++++---- README.md | 2 ++ crates/derive-alloy/CHANGELOG.md | 11 +++++++++++ crates/derive-alloy/Cargo.toml | 2 +- crates/derive/CHANGELOG.md | 17 +++++++++++++++++ crates/derive/Cargo.toml | 2 +- crates/executor/CHANGELOG.md | 6 ++++++ crates/executor/Cargo.toml | 2 +- crates/mpt/CHANGELOG.md | 6 ++++++ crates/mpt/Cargo.toml | 2 +- 11 files changed, 54 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ebdfa3de7..365d6178f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2234,7 +2234,7 @@ dependencies = [ [[package]] name = "kona-derive" -version = "0.0.4" +version = "0.0.5" dependencies = [ "alloc-no-stdlib", "alloy-consensus", @@ -2261,7 +2261,7 @@ dependencies = [ [[package]] name = "kona-derive-alloy" -version = "0.0.1" +version = "0.0.2" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2290,7 +2290,7 @@ dependencies = [ [[package]] name = "kona-executor" -version = "0.0.3" +version = "0.0.4" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2351,7 +2351,7 @@ dependencies = [ [[package]] name = "kona-mpt" -version = "0.0.4" +version = "0.0.5" dependencies = [ "alloy-consensus", "alloy-primitives", diff --git a/Cargo.toml b/Cargo.toml index b9bce0f56..156dba336 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,14 +55,14 @@ lto = "fat" [workspace.dependencies] # Workspace -kona-mpt = { path = "crates/mpt", version = "0.0.4", default-features = false } +kona-mpt = { path = "crates/mpt", version = "0.0.5", default-features = false } kona-client = { path = "bin/client", version = "0.1.0", default-features = false } kona-common = { path = "crates/common", version = "0.0.4", default-features = false } -kona-derive = { path = "crates/derive", version = "0.0.4", default-features = false } +kona-derive = { path = "crates/derive", version = "0.0.5", default-features = false } kona-preimage = { path = "crates/preimage", version = "0.0.4", default-features = false } -kona-executor = { path = "crates/executor", version = "0.0.3", default-features = false } +kona-executor = { path = "crates/executor", version = "0.0.4", default-features = false } kona-common-proc = { path = "crates/common-proc", version = "0.0.4", default-features = false } -kona-derive-alloy = { path = "crates/derive-alloy", version = "0.0.1", default-features = false } +kona-derive-alloy = { path = "crates/derive-alloy", version = "0.0.2", default-features = false } # Alloy alloy-rlp = { version = "0.3.9", default-features = false } diff --git a/README.md b/README.md index 3c0edb98d..236e547cf 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,8 @@ getting started with building your own programs, and a reference for the librari `kona` is inspired by the work of several teams, namely [OP Labs][op-labs] and other contributors' work on the [`op-program`][op-program] and [BadBoiLabs][bad-boi-labs]'s work on [Cannon-rs][badboi-cannon-rs]. +[alloy]: https://github.com/alloy-rs/alloy +[op-alloy]: https://github.com/alloy-rs/op-alloy [op-stack]: https://github.com/ethereum-optimism/optimism [op-program]: https://github.com/ethereum-optimism/optimism/tree/develop/op-program [cannon]: https://github.com/ethereum-optimism/optimism/tree/develop/cannon diff --git a/crates/derive-alloy/CHANGELOG.md b/crates/derive-alloy/CHANGELOG.md index 5d18d2ab5..43676af7e 100644 --- a/crates/derive-alloy/CHANGELOG.md +++ b/crates/derive-alloy/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.2](https://github.com/anton-rs/kona/compare/kona-derive-alloy-v0.0.1...kona-derive-alloy-v0.0.2) - 2024-10-29 + +### Added + +- *(derive)* use upstream op-alloy batch types ([#746](https://github.com/anton-rs/kona/pull/746)) + +### Other + +- *(derive-alloy)* Remove metrics ([#748](https://github.com/anton-rs/kona/pull/748)) +- *(kona-derive-alloy)* release v0.0.1 ([#736](https://github.com/anton-rs/kona/pull/736)) + ## [0.0.1](https://github.com/anton-rs/kona/releases/tag/kona-derive-alloy-v0.0.1) - 2024-10-25 ### Added diff --git a/crates/derive-alloy/Cargo.toml b/crates/derive-alloy/Cargo.toml index 56ddb614a..92c4bbc99 100644 --- a/crates/derive-alloy/Cargo.toml +++ b/crates/derive-alloy/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-derive-alloy" description = "An alloy-backed derivation pipeline for the OP Stack, built on `kona-derive`" -version = "0.0.1" +version = "0.0.2" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/derive/CHANGELOG.md b/crates/derive/CHANGELOG.md index 26a6f8d44..fcacda5ee 100644 --- a/crates/derive/CHANGELOG.md +++ b/crates/derive/CHANGELOG.md @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.5](https://github.com/anton-rs/kona/compare/kona-derive-v0.0.4...kona-derive-v0.0.5) - 2024-10-29 + +### Added + +- *(derive)* use upstream op-alloy batch types ([#746](https://github.com/anton-rs/kona/pull/746)) +- *(derive)* Remove metrics ([#743](https://github.com/anton-rs/kona/pull/743)) +- *(derive)* sys config accessor ([#722](https://github.com/anton-rs/kona/pull/722)) + +### Fixed + +- tracing_subscriber problem in `kona-derive` tests ([#741](https://github.com/anton-rs/kona/pull/741)) +- *(derive)* Holocene action tests / fixes ([#733](https://github.com/anton-rs/kona/pull/733)) + +### Other + +- *(derive)* import hygiene ([#744](https://github.com/anton-rs/kona/pull/744)) + ## [0.0.4](https://github.com/anton-rs/kona/compare/kona-derive-v0.0.3...kona-derive-v0.0.4) - 2024-10-25 ### Added diff --git a/crates/derive/Cargo.toml b/crates/derive/Cargo.toml index a3605edc4..c0d9a9fa4 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.0.4" +version = "0.0.5" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/executor/CHANGELOG.md b/crates/executor/CHANGELOG.md index 34560eca5..f9b7c4f7c 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.0.4](https://github.com/anton-rs/kona/compare/kona-executor-v0.0.3...kona-executor-v0.0.4) - 2024-10-29 + +### Other + +- update Cargo.toml dependencies + ## [0.0.3](https://github.com/anton-rs/kona/compare/kona-executor-v0.0.2...kona-executor-v0.0.3) - 2024-10-25 ### Added diff --git a/crates/executor/Cargo.toml b/crates/executor/Cargo.toml index b0a0212d6..3ae890b69 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.0.3" +version = "0.0.4" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/mpt/CHANGELOG.md b/crates/mpt/CHANGELOG.md index fc0a7e02f..87c7ca45e 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.0.5](https://github.com/anton-rs/kona/compare/kona-mpt-v0.0.4...kona-mpt-v0.0.5) - 2024-10-29 + +### Fixed + +- add feature for `alloy-provider`, fix `test_util` ([#738](https://github.com/anton-rs/kona/pull/738)) + ## [0.0.4](https://github.com/anton-rs/kona/compare/kona-mpt-v0.0.3...kona-mpt-v0.0.4) - 2024-10-25 ### Added diff --git a/crates/mpt/Cargo.toml b/crates/mpt/Cargo.toml index fc82d8dc9..eb453106f 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.0.4" +version = "0.0.5" edition.workspace = true authors.workspace = true license.workspace = true