Skip to content

Commit c55fe0e

Browse files
chore: release v0.2.2
1 parent b8b0528 commit c55fe0e

File tree

10 files changed

+41
-12
lines changed

10 files changed

+41
-12
lines changed

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ lto = "fat"
6464
# Workspace
6565
kona-mpt = { path = "crates/mpt", version = "0.1.2", default-features = false }
6666
kona-client = { path = "bin/client", version = "0.1.0", default-features = false }
67-
kona-derive = { path = "crates/derive", version = "0.2.1", default-features = false }
68-
kona-driver = { path = "crates/driver", version = "0.2.1", default-features = false }
69-
kona-executor = { path = "crates/executor", version = "0.2.1", default-features = false }
70-
kona-proof = { path = "crates/proof-sdk/proof", version = "0.2.1", default-features = false }
67+
kona-derive = { path = "crates/derive", version = "0.2.2", default-features = false }
68+
kona-driver = { path = "crates/driver", version = "0.2.2", default-features = false }
69+
kona-executor = { path = "crates/executor", version = "0.2.2", default-features = false }
70+
kona-proof = { path = "crates/proof-sdk/proof", version = "0.2.2", default-features = false }
7171
kona-std-fpvm = { path = "crates/proof-sdk/std-fpvm", version = "0.1.2", default-features = false }
7272
kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.2.1", default-features = false }
7373
kona-std-fpvm-proc = { path = "crates/proof-sdk/std-fpvm-proc", version = "0.1.2", default-features = false }

crates/derive/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.2.2](https://github.com/op-rs/kona/compare/kona-derive-v0.2.1...kona-derive-v0.2.2) - 2025-01-13
10+
11+
### Other
12+
13+
- Move temporary error logs to lower level than WARN ([#897](https://github.com/op-rs/kona/pull/897))
14+
- *(deps)* Replace dep `alloy-rs/op-alloy-registry`->`op-rs/maili-registry` (#892)
15+
- *(deps)* Replace dep `alloy-rs/op-alloy-protocol`->`op-rs/maili-protocol` (#890)
16+
- *(derive)* Test Ignoring EIP-7702 (#887)
17+
918
## [0.2.1](https://github.com/op-rs/kona/compare/kona-derive-v0.2.0...kona-derive-v0.2.1) - 2025-01-07
1019

1120
### Fixed

crates/derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kona-derive"
33
description = "A no_std derivation pipeline implementation for the OP Stack"
4-
version = "0.2.1"
4+
version = "0.2.2"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

crates/driver/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.2](https://github.com/op-rs/kona/compare/kona-driver-v0.2.1...kona-driver-v0.2.2) - 2025-01-13
11+
12+
### Other
13+
14+
- Move temporary error logs to lower level than WARN ([#897](https://github.com/op-rs/kona/pull/897))
15+
- *(deps)* Replace dep `alloy-rs/op-alloy-protocol`->`op-rs/maili-protocol` (#890)
16+
1017
## [0.2.1](https://github.com/op-rs/kona/compare/kona-driver-v0.2.0...kona-driver-v0.2.1) - 2025-01-07
1118

1219
### Fixed

crates/driver/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kona-driver"
33
description = "A no_std derivation pipeline driver"
4-
version = "0.2.1"
4+
version = "0.2.2"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

crates/executor/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.2.2](https://github.com/op-rs/kona/compare/kona-executor-v0.2.1...kona-executor-v0.2.2) - 2025-01-13
10+
11+
### Other
12+
13+
- update Cargo.toml dependencies
14+
915
## [0.2.1](https://github.com/op-rs/kona/compare/kona-executor-v0.2.0...kona-executor-v0.2.1) - 2025-01-07
1016

1117
### Fixed

crates/executor/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kona-executor"
33
description = "An no_std implementation of a stateless L2 block executor for the OP Stack."
4-
version = "0.2.1"
4+
version = "0.2.2"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

crates/proof-sdk/proof/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.2.2](https://github.com/op-rs/kona/compare/kona-proof-v0.2.1...kona-proof-v0.2.2) - 2025-01-13
10+
11+
### Other
12+
13+
- *(deps)* Replace dep `alloy-rs/op-alloy-registry`->`op-rs/maili-registry` (#892)
14+
- *(deps)* Replace dep `alloy-rs/op-alloy-protocol`->`op-rs/maili-protocol` (#890)
15+
916
## [0.2.1](https://github.com/op-rs/kona/compare/kona-proof-v0.2.0...kona-proof-v0.2.1) - 2025-01-07
1017

1118
### Fixed

crates/proof-sdk/proof/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kona-proof"
33
description = "OP Stack Proof SDK"
4-
version = "0.2.1"
4+
version = "0.2.2"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

0 commit comments

Comments
 (0)