Skip to content

Commit 874c7ed

Browse files
chore: release (#885)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: refcell <[email protected]>
1 parent 992b1a1 commit 874c7ed

19 files changed

+94
-24
lines changed

Diff for: Cargo.lock

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

Diff for: Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ lto = "fat"
6262

6363
[workspace.dependencies]
6464
# Workspace
65-
kona-mpt = { path = "crates/mpt", version = "0.1.1", default-features = false }
65+
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.0", default-features = false }
68-
kona-driver = { path = "crates/driver", version = "0.2.0", default-features = false }
69-
kona-executor = { path = "crates/executor", version = "0.2.0", default-features = false }
70-
kona-proof = { path = "crates/proof-sdk/proof", version = "0.2.0", default-features = false }
71-
kona-std-fpvm = { path = "crates/proof-sdk/std-fpvm", version = "0.1.1", default-features = false }
72-
kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.2.0", default-features = false }
73-
kona-std-fpvm-proc = { path = "crates/proof-sdk/std-fpvm-proc", version = "0.1.1", 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 }
71+
kona-std-fpvm = { path = "crates/proof-sdk/std-fpvm", version = "0.1.2", default-features = false }
72+
kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.2.1", default-features = false }
73+
kona-std-fpvm-proc = { path = "crates/proof-sdk/std-fpvm-proc", version = "0.1.2", default-features = false }
7474

7575
# Alloy
7676
alloy-rlp = { version = "0.3.10", default-features = false }

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<a href="#credits">Credits</a>
2222
</p>
2323

24+
2425
## What's Kona?
2526

2627
Kona is a suite of portable implementations of the OP Stack rollup state transition, namely the [derivation pipeline][g-derivation-pipeline] and

Diff for: crates/derive/CHANGELOG.md

+13
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.1](https://github.com/op-rs/kona/compare/kona-derive-v0.2.0...kona-derive-v0.2.1) - 2025-01-07
10+
11+
### Fixed
12+
13+
- op-rs rename (#883)
14+
- *(derive)* `BatchStream` Past batch handling (#876)
15+
- *(derive)* make tests compile (#878)
16+
17+
### Other
18+
19+
- Bump Dependencies (#880)
20+
- patch for rust 1.81 ([#867](https://github.com/op-rs/kona/pull/867))
21+
922
## [0.2.0](https://github.com/op-rs/kona/compare/kona-derive-v0.1.0...kona-derive-v0.2.0) - 2024-12-03
1023

1124
### Added

Diff for: 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.0"
4+
version = "0.2.1"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

Diff for: crates/driver/CHANGELOG.md

+6
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.1](https://github.com/op-rs/kona/compare/kona-driver-v0.2.0...kona-driver-v0.2.1) - 2025-01-07
11+
12+
### Fixed
13+
14+
- op-rs rename (#883)
15+
1016
## [0.2.0](https://github.com/op-rs/kona/compare/kona-driver-v0.1.0...kona-driver-v0.2.0) - 2024-12-03
1117

1218
### Added

Diff for: 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.0"
4+
version = "0.2.1"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

Diff for: crates/executor/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.2.1](https://github.com/op-rs/kona/compare/kona-executor-v0.2.0...kona-executor-v0.2.1) - 2025-01-07
10+
11+
### Fixed
12+
13+
- op-rs rename (#883)
14+
15+
### Other
16+
17+
- Bump Dependencies (#880)
18+
- remove redundant words in comment (#882)
19+
- Isthmus Withdrawals Root (#881)
20+
921
## [0.2.0](https://github.com/op-rs/kona/compare/kona-executor-v0.1.0...kona-executor-v0.2.0) - 2024-12-03
1022

1123
### Added

Diff for: 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.0"
4+
version = "0.2.1"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

Diff for: crates/mpt/CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.1.2](https://github.com/op-rs/kona/compare/kona-mpt-v0.1.1...kona-mpt-v0.1.2) - 2025-01-07
10+
11+
### Fixed
12+
13+
- op-rs rename (#883)
14+
15+
### Other
16+
17+
- Bump Dependencies (#880)
18+
919
## [0.1.1](https://github.com/op-rs/kona/compare/kona-mpt-v0.1.0...kona-mpt-v0.1.1) - 2024-12-03
1020

1121
### Other

Diff for: crates/mpt/Cargo.toml

+1-1
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.1"
4+
version = "0.1.2"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

Diff for: crates/proof-sdk/preimage/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.1](https://github.com/op-rs/kona/compare/kona-preimage-v0.2.0...kona-preimage-v0.2.1) - 2025-01-07
10+
11+
### Fixed
12+
13+
- op-rs rename (#883)
14+
915
## [0.2.0](https://github.com/op-rs/kona/compare/kona-preimage-v0.1.0...kona-preimage-v0.2.0) - 2024-12-03
1016

1117
### Added

Diff for: crates/proof-sdk/preimage/Cargo.toml

+1-1
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.0"
4+
version = "0.2.1"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

Diff for: crates/proof-sdk/proof/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.1](https://github.com/op-rs/kona/compare/kona-proof-v0.2.0...kona-proof-v0.2.1) - 2025-01-07
10+
11+
### Fixed
12+
13+
- op-rs rename (#883)
14+
915
## [0.2.0](https://github.com/op-rs/kona/compare/kona-proof-v0.1.0...kona-proof-v0.2.0) - 2024-12-03
1016

1117
### Added

Diff for: 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.0"
4+
version = "0.2.1"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

Diff for: crates/proof-sdk/std-fpvm-proc/CHANGELOG.md

+6
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/op-rs/kona/compare/kona-std-fpvm-proc-v0.1.1...kona-std-fpvm-proc-v0.1.2) - 2025-01-07
11+
12+
### Fixed
13+
14+
- op-rs rename (#883)
15+
1016
## [0.1.1](https://github.com/op-rs/kona/compare/kona-std-fpvm-proc-v0.1.0...kona-std-fpvm-proc-v0.1.1) - 2024-12-03
1117

1218
### Other

Diff for: crates/proof-sdk/std-fpvm-proc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kona-std-fpvm-proc"
33
description = "Proc macro entry point for `kona-std-fpvm` targeted programs."
4-
version = "0.1.1"
4+
version = "0.1.2"
55
edition.workspace = true
66
authors.workspace = true
77
license.workspace = true

Diff for: crates/proof-sdk/std-fpvm/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ 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/op-rs/kona/compare/kona-std-fpvm-v0.1.1...kona-std-fpvm-v0.1.2) - 2025-01-07
11+
12+
### Added
13+
14+
- *(build)* Adjust RV target - `riscv64g` -> `riscv64ima` (#868)
15+
16+
### Fixed
17+
18+
- op-rs rename (#883)
19+
1020
## [0.1.1](https://github.com/op-rs/kona/compare/kona-std-fpvm-v0.1.0...kona-std-fpvm-v0.1.1) - 2024-12-03
1121

1222
### Other

Diff for: crates/proof-sdk/std-fpvm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kona-std-fpvm"
33
description = "Platform specific APIs for interacting with Fault Proof VM kernels."
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)