Skip to content

Commit 7694d38

Browse files
chore: release
1 parent df3be26 commit 7694d38

File tree

24 files changed

+109
-33
lines changed

24 files changed

+109
-33
lines changed

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -64,22 +64,22 @@ kona-host = { path = "bin/host", version = "0.1.0", default-features = false }
6464
kona-client = { path = "bin/client", version = "0.1.0", default-features = false }
6565

6666
# Workspace Protocol
67-
kona-derive = { path = "crates/protocol/derive", version = "0.2.3", default-features = false }
68-
kona-driver = { path = "crates/protocol/driver", version = "0.2.3", default-features = false }
69-
kona-interop = { path = "crates/protocol/interop", version = "0.1.1", default-features = false }
67+
kona-derive = { path = "crates/protocol/derive", version = "0.2.4", default-features = false }
68+
kona-driver = { path = "crates/protocol/driver", version = "0.2.4", default-features = false }
69+
kona-interop = { path = "crates/protocol/interop", version = "0.2.0", default-features = false }
7070

7171
# Workspace Services
7272
kona-net = { path = "crates/services/net", version = "0.1.0", default-features = false }
73-
kona-providers-alloy = { path = "crates/services/providers-alloy", version = "0.1.0", default-features = false }
73+
kona-providers-alloy = { path = "crates/services/providers-alloy", version = "0.1.1", default-features = false }
7474

7575
# Workspace Proof
76-
kona-mpt = { path = "crates/proof/mpt", version = "0.1.2", default-features = false }
77-
kona-proof = { path = "crates/proof/proof", version = "0.2.3", default-features = false }
78-
kona-executor = { path = "crates/proof/executor", version = "0.2.3", default-features = false }
79-
kona-std-fpvm = { path = "crates/proof/std-fpvm", version = "0.1.2", default-features = false }
80-
kona-preimage = { path = "crates/proof/preimage", version = "0.2.1", default-features = false }
81-
kona-std-fpvm-proc = { path = "crates/proof/std-fpvm-proc", version = "0.1.2", default-features = false }
82-
kona-proof-interop = { path = "crates/proof/proof-interop", version = "0.1.1", default-features = false }
76+
kona-mpt = { path = "crates/proof/mpt", version = "0.2.0", default-features = false }
77+
kona-proof = { path = "crates/proof/proof", version = "0.2.4", default-features = false }
78+
kona-executor = { path = "crates/proof/executor", version = "0.3.0", default-features = false }
79+
kona-std-fpvm = { path = "crates/proof/std-fpvm", version = "0.1.3", default-features = false }
80+
kona-preimage = { path = "crates/proof/preimage", version = "0.2.2", default-features = false }
81+
kona-std-fpvm-proc = { path = "crates/proof/std-fpvm-proc", version = "0.1.3", default-features = false }
82+
kona-proof-interop = { path = "crates/proof/proof-interop", version = "0.1.2", default-features = false }
8383

8484
# Maili
8585
maili-rpc = { version = "0.2.8", default-features = false }

crates/proof/executor/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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.3.0](https://github.com/succinctlabs/kona/compare/kona-executor-v0.2.3...kona-executor-v0.3.0) - 2025-02-18
10+
11+
### Other
12+
13+
- Restructure Kona to be more Extensible (#1031)
14+
915
## [0.2.3](https://github.com/op-rs/kona/compare/kona-executor-v0.2.2...kona-executor-v0.2.3) - 2025-01-16
1016

1117
### Other

crates/proof/executor/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.3"
4+
version = "0.3.0"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

crates/proof/mpt/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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.0](https://github.com/succinctlabs/kona/compare/kona-mpt-v0.1.2...kona-mpt-v0.2.0) - 2025-02-18
10+
11+
### Other
12+
13+
- Restructure Kona to be more Extensible (#1031)
14+
915
## [0.1.2](https://github.com/op-rs/kona/compare/kona-mpt-v0.1.1...kona-mpt-v0.1.2) - 2025-01-07
1016

1117
### Fixed

crates/proof/mpt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kona-mpt"
33
description = "Utilities for interacting with and iterating through a merkle patricia trie"
4-
version = "0.1.2"
4+
version = "0.2.0"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

crates/proof/preimage/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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/succinctlabs/kona/compare/kona-preimage-v0.2.1...kona-preimage-v0.2.2) - 2025-02-18
10+
11+
### Other
12+
13+
- Restructure Kona to be more Extensible (#1031)
14+
915
## [0.2.1](https://github.com/op-rs/kona/compare/kona-preimage-v0.2.0...kona-preimage-v0.2.1) - 2025-01-07
1016

1117
### Fixed

crates/proof/preimage/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kona-preimage"
33
description = "Bindings and types for interacting with the PreimageOracle ABI"
4-
version = "0.2.1"
4+
version = "0.2.2"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

crates/proof/proof-interop/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.2](https://github.com/succinctlabs/kona/compare/kona-proof-interop-v0.1.1...kona-proof-interop-v0.1.2) - 2025-02-18
11+
12+
### Other
13+
14+
- Restructure Kona to be more Extensible (#1031)
15+
1016
## [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
1117

1218
### Other

crates/proof/proof-interop/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kona-proof-interop"
33
description = "OP Stack Proof SDK with Interop support"
4-
version = "0.1.1"
4+
version = "0.1.2"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

0 commit comments

Comments
 (0)