Skip to content

Commit 6754fbf

Browse files
chore: release
1 parent 66e94c6 commit 6754fbf

File tree

24 files changed

+122
-33
lines changed

24 files changed

+122
-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
@@ -66,17 +66,17 @@ lto = "fat"
6666
# Workspace
6767
kona-host = { path = "bin/host", version = "0.1.0", default-features = false }
6868
kona-client = { path = "bin/client", version = "0.1.0", default-features = false }
69-
kona-mpt = { path = "crates/mpt", version = "0.1.2", default-features = false }
70-
kona-derive = { path = "crates/derive", version = "0.2.3", default-features = false }
71-
kona-driver = { path = "crates/driver", version = "0.2.3", default-features = false }
72-
kona-providers-alloy = { path = "crates/providers-alloy", version = "0.1.0", default-features = false }
73-
kona-executor = { path = "crates/executor", version = "0.2.3", default-features = false }
74-
kona-interop = { path = "crates/interop", version = "0.1.1", default-features = false }
75-
kona-proof = { path = "crates/proof-sdk/proof", version = "0.2.3", default-features = false }
76-
kona-proof-interop = { path = "crates/proof-sdk/proof-interop", version = "0.1.1", default-features = false }
77-
kona-std-fpvm = { path = "crates/proof-sdk/std-fpvm", version = "0.1.2", default-features = false }
78-
kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.2.1", default-features = false }
79-
kona-std-fpvm-proc = { path = "crates/proof-sdk/std-fpvm-proc", version = "0.1.2", default-features = false }
69+
kona-mpt = { path = "crates/mpt", version = "0.1.3", default-features = false }
70+
kona-derive = { path = "crates/derive", version = "0.2.4", default-features = false }
71+
kona-driver = { path = "crates/driver", version = "0.2.4", default-features = false }
72+
kona-providers-alloy = { path = "crates/providers-alloy", version = "0.1.1", default-features = false }
73+
kona-executor = { path = "crates/executor", version = "0.2.4", default-features = false }
74+
kona-interop = { path = "crates/interop", version = "0.2.0", default-features = false }
75+
kona-proof = { path = "crates/proof-sdk/proof", version = "0.2.4", default-features = false }
76+
kona-proof-interop = { path = "crates/proof-sdk/proof-interop", version = "0.1.2", default-features = false }
77+
kona-std-fpvm = { path = "crates/proof-sdk/std-fpvm", version = "0.1.3", default-features = false }
78+
kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.2.2", default-features = false }
79+
kona-std-fpvm-proc = { path = "crates/proof-sdk/std-fpvm-proc", version = "0.1.3", default-features = false }
8080

8181
# Maili
8282
maili-consensus = { version = "0.1.6", default-features = false }

crates/derive/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.4](https://github.com/succinctlabs/kona/compare/kona-derive-v0.2.3...kona-derive-v0.2.4) - 2025-01-27
10+
11+
### Added
12+
13+
- *(host)* Interop proof support (part 1) (#910)
14+
915
## [0.2.3](https://github.com/op-rs/kona/compare/kona-derive-v0.2.2...kona-derive-v0.2.3) - 2025-01-16
1016

1117
### Other

crates/derive/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-derive"
33
description = "A no_std derivation pipeline implementation for the OP Stack"
4-
version = "0.2.3"
4+
version = "0.2.4"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

crates/driver/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
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.4](https://github.com/succinctlabs/kona/compare/kona-driver-v0.2.3...kona-driver-v0.2.4) - 2025-01-27
11+
12+
### Added
13+
14+
- *(host)* Interop proof support (part 1) (#910)
15+
- *(driver)* Multi-block derivation (#888)
16+
1017
## [0.2.3](https://github.com/op-rs/kona/compare/kona-driver-v0.2.2...kona-driver-v0.2.3) - 2025-01-16
1118

1219
### Added

crates/driver/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-driver"
33
description = "A no_std derivation pipeline driver"
4-
version = "0.2.3"
4+
version = "0.2.4"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

crates/executor/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.2.4](https://github.com/succinctlabs/kona/compare/kona-executor-v0.2.3...kona-executor-v0.2.4) - 2025-01-27
10+
11+
### Added
12+
13+
- use empty requests hash when isthmus enabled (#951)
14+
- *(executor)* New static test harness (#938)
15+
- *(host)* Interop proof support (part 1) (#910)
16+
17+
### Other
18+
19+
- *(executor)* Remove `anyhow` dev-dependency (#937)
20+
- *(mpt)* Remove `anyhow` dev-dependency (#919)
21+
922
## [0.2.3](https://github.com/op-rs/kona/compare/kona-executor-v0.2.2...kona-executor-v0.2.3) - 2025-01-16
1023

1124
### Other

crates/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.2.4"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

crates/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.2.0](https://github.com/succinctlabs/kona/compare/kona-interop-v0.1.1...kona-interop-v0.2.0) - 2025-01-27
11+
12+
### Added
13+
14+
- *(client)* Interop consolidation sub-problem (#913)
15+
1016
## [0.1.1](https://github.com/op-rs/kona/compare/kona-interop-v0.1.0...kona-interop-v0.1.1) - 2025-01-16
1117

1218
### Other

crates/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-interop"
33
description = "Core functionality and primitives for the Interop feature of the OP Stack."
4-
version = "0.1.1"
4+
version = "0.2.0"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

0 commit comments

Comments
 (0)