Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Feb 5, 2025
1 parent ca0a44f commit fc4dc78
Show file tree
Hide file tree
Showing 24 changed files with 198 additions and 33 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,17 @@ lto = "fat"
# Workspace
kona-host = { path = "bin/host", version = "0.1.0", default-features = false }
kona-client = { path = "bin/client", version = "0.1.0", default-features = false }
kona-mpt = { path = "crates/mpt", version = "0.1.2", default-features = false }
kona-derive = { path = "crates/derive", version = "0.2.3", default-features = false }
kona-driver = { path = "crates/driver", version = "0.2.3", default-features = false }
kona-providers-alloy = { path = "crates/providers-alloy", version = "0.1.0", default-features = false }
kona-executor = { path = "crates/executor", version = "0.2.3", default-features = false }
kona-interop = { path = "crates/interop", version = "0.1.1", default-features = false }
kona-proof = { path = "crates/proof-sdk/proof", version = "0.2.3", default-features = false }
kona-proof-interop = { path = "crates/proof-sdk/proof-interop", version = "0.1.1", default-features = false }
kona-std-fpvm = { path = "crates/proof-sdk/std-fpvm", version = "0.1.2", default-features = false }
kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.2.1", default-features = false }
kona-std-fpvm-proc = { path = "crates/proof-sdk/std-fpvm-proc", version = "0.1.2", default-features = false }
kona-mpt = { path = "crates/mpt", version = "0.1.3", default-features = false }
kona-derive = { path = "crates/derive", version = "0.2.4", default-features = false }
kona-driver = { path = "crates/driver", version = "0.2.4", default-features = false }
kona-providers-alloy = { path = "crates/providers-alloy", version = "0.1.1", default-features = false }
kona-executor = { path = "crates/executor", version = "0.2.4", default-features = false }
kona-interop = { path = "crates/interop", version = "0.2.0", default-features = false }
kona-proof = { path = "crates/proof-sdk/proof", version = "0.2.4", default-features = false }
kona-proof-interop = { path = "crates/proof-sdk/proof-interop", version = "0.1.2", default-features = false }
kona-std-fpvm = { path = "crates/proof-sdk/std-fpvm", version = "0.1.3", default-features = false }
kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.2.2", default-features = false }
kona-std-fpvm-proc = { path = "crates/proof-sdk/std-fpvm-proc", version = "0.1.3", default-features = false }

# Maili
maili-rpc = { version = "0.2.1", default-features = false }
Expand Down
11 changes: 11 additions & 0 deletions crates/derive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.4](https://github.com/op-rs/kona/compare/kona-derive-v0.2.3...kona-derive-v0.2.4) - 2025-02-05

### Added

- allow 7702 receipts after Isthmus active (#959)
- *(host)* Interop proof support (part 1) (#910)

### Other

- Dep Updates (#980)

## [0.2.3](https://github.com/op-rs/kona/compare/kona-derive-v0.2.2...kona-derive-v0.2.3) - 2025-01-16

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kona-derive"
description = "A no_std derivation pipeline implementation for the OP Stack"
version = "0.2.3"
version = "0.2.4"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions crates/driver/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.4](https://github.com/op-rs/kona/compare/kona-driver-v0.2.3...kona-driver-v0.2.4) - 2025-02-05

### Added

- *(host)* Interop optimistic block re-execution hint (#983)
- *(executor)* Export receipts (#969)
- allow 7702 receipts after Isthmus active (#959)
- *(host)* Interop proof support (part 1) (#910)
- *(driver)* Multi-block derivation (#888)

### Fixed

- *(client)* Interop transition rules (#973)

## [0.2.3](https://github.com/op-rs/kona/compare/kona-driver-v0.2.2...kona-driver-v0.2.3) - 2025-01-16

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/driver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kona-driver"
description = "A no_std derivation pipeline driver"
version = "0.2.3"
version = "0.2.4"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
33 changes: 33 additions & 0 deletions crates/executor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.4](https://github.com/op-rs/kona/compare/kona-executor-v0.2.3...kona-executor-v0.2.4) - 2025-02-05

### Added

- *(mpt)* Copy-on-hash (#1001)
- *(host)* Interop optimistic block re-execution hint (#983)
- *(executor)* Export receipts (#969)
- *(executor)* EIP-7251 Syscall Support [ISTHMUS] (#968)
- *(executor)* EIP-7002 Syscall Support [ISTHMUS] (#965)
- *(executor)* EIP-2935 Syscall Support [ISTHMUS] (#963)
- fill eip 7702 tx env with auth list (#958)
- allow 7702 receipts after Isthmus active (#959)
- use empty requests hash when isthmus enabled (#951)
- *(executor)* New static test harness (#938)
- *(host)* Interop proof support (part 1) (#910)

### Fixed

- *(executor)* Removes EIP-7002 and EIP-7251 Pre-block Calls (#990)
- *(executor)* Withdrawals root (#974)
- *(executor)* Don't generate a diff when running tests (#967)

### Other

- Bump op-alloy dep (#996)
- Update Dependencies (#988)
- Update Maili Deps (#978)
- *(executor)* De-duplicate `TrieAccount` type (#977)
- *(executor)* TxEnv Stuffing (#970)
- *(executor)* Update SpecId with Isthmus (#962)
- *(executor)* Remove `anyhow` dev-dependency (#937)
- *(mpt)* Remove `anyhow` dev-dependency (#919)

## [0.2.3](https://github.com/op-rs/kona/compare/kona-executor-v0.2.2...kona-executor-v0.2.3) - 2025-01-16

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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.2.3"
version = "0.2.4"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
12 changes: 12 additions & 0 deletions crates/interop/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0](https://github.com/op-rs/kona/compare/kona-interop-v0.1.1...kona-interop-v0.2.0) - 2025-02-05

### Added

- *(proof-interop)* Support multiple `RollupConfigs` in boot routine (#986)
- allow 7702 receipts after Isthmus active (#959)
- *(client)* Interop consolidation sub-problem (#913)

### Other

- Dep Updates (#980)

## [0.1.1](https://github.com/op-rs/kona/compare/kona-interop-v0.1.0...kona-interop-v0.1.1) - 2025-01-16

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/interop/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kona-interop"
description = "Core functionality and primitives for the Interop feature of the OP Stack."
version = "0.1.1"
version = "0.2.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
11 changes: 11 additions & 0 deletions crates/mpt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.3](https://github.com/op-rs/kona/compare/kona-mpt-v0.1.2...kona-mpt-v0.1.3) - 2025-02-05

### Added

- *(mpt)* Copy-on-hash (#1001)

### Other

- Dep Updates (#980)
- *(mpt)* Remove `anyhow` dev-dependency (#919)

## [0.1.2](https://github.com/op-rs/kona/compare/kona-mpt-v0.1.1...kona-mpt-v0.1.2) - 2025-01-07

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/mpt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kona-mpt"
description = "Utilities for interacting with and iterating through a merkle patricia trie"
version = "0.1.2"
version = "0.1.3"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
11 changes: 11 additions & 0 deletions crates/proof-sdk/preimage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.2](https://github.com/op-rs/kona/compare/kona-preimage-v0.2.1...kona-preimage-v0.2.2) - 2025-02-05

### Added

- Derive Eq/Ord/Hash for (Archived) PreimageKey(Type) (#956)

### Other

- *(host)* Refactor fetchers (#995)
- *(host)* Remove `HostOrchestrator` (#994)

## [0.2.1](https://github.com/op-rs/kona/compare/kona-preimage-v0.2.0...kona-preimage-v0.2.1) - 2025-01-07

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/proof-sdk/preimage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kona-preimage"
description = "Bindings and types for interacting with the PreimageOracle ABI"
version = "0.2.1"
version = "0.2.2"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
16 changes: 16 additions & 0 deletions crates/proof-sdk/proof-interop/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.2](https://github.com/op-rs/kona/compare/kona-proof-interop-v0.1.1...kona-proof-interop-v0.1.2) - 2025-02-05

### Added

- *(proof-sdk)* Cleanup `Hint` API (#998)
- *(proof-interop)* Support multiple `RollupConfigs` in boot routine (#986)
- *(host)* Interop optimistic block re-execution hint (#983)
- allow 7702 receipts after Isthmus active (#959)
- *(client)* Interop consolidation sub-problem (#913)
- *(host)* Interop proof support (part 1) (#910)

### Other

- *(host)* Refactor fetchers (#995)
- Dep Updates (#980)

## [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

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/proof-sdk/proof-interop/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kona-proof-interop"
description = "OP Stack Proof SDK with Interop support"
version = "0.1.1"
version = "0.1.2"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
18 changes: 18 additions & 0 deletions crates/proof-sdk/proof/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.4](https://github.com/op-rs/kona/compare/kona-proof-v0.2.3...kona-proof-v0.2.4) - 2025-02-05

### Added

- *(proof-sdk)* Optional L2 chain ID in L2-specific hints (#999)
- *(proof-sdk)* Cleanup `Hint` API (#998)
- *(proof-interop)* Support multiple `RollupConfigs` in boot routine (#986)
- *(host)* Interop optimistic block re-execution hint (#983)
- *(executor)* Export receipts (#969)
- allow 7702 receipts after Isthmus active (#959)
- *(client)* Interop consolidation sub-problem (#913)
- *(host)* Interop proof support (part 1) (#910)
- *(driver)* Multi-block derivation (#888)

### Other

- *(host)* Refactor fetchers (#995)

## [0.2.3](https://github.com/op-rs/kona/compare/kona-proof-v0.2.2...kona-proof-v0.2.3) - 2025-01-16

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/proof-sdk/proof/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kona-proof"
description = "OP Stack Proof SDK"
version = "0.2.3"
version = "0.2.4"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
10 changes: 10 additions & 0 deletions crates/proof-sdk/std-fpvm-proc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.3](https://github.com/op-rs/kona/compare/kona-std-fpvm-proc-v0.1.2...kona-std-fpvm-proc-v0.1.3) - 2025-02-05

### Added

- *(build)* Migrate to `mips64r2` target for `cannon` (#943)

### Other

- *(mpt)* Remove `anyhow` dev-dependency (#919)

## [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

### Fixed
Expand Down
Loading

0 comments on commit fc4dc78

Please sign in to comment.