Skip to content

Commit

Permalink
fixes (#827)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Nov 20, 2024
1 parent 9e90c2d commit 7d66132
Show file tree
Hide file tree
Showing 17 changed files with 129 additions and 21 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,14 @@ lto = "fat"

[workspace.dependencies]
# Workspace
kona-mpt = { path = "crates/mpt", version = "0.0.6", default-features = false }
kona-mpt = { path = "crates/mpt", version = "0.0.7", default-features = false }
kona-client = { path = "bin/client", version = "0.1.0", default-features = false }
kona-derive = { path = "crates/derive", version = "0.0.6", default-features = false }
kona-driver = { path = "crates/driver", version = "0.0.0", default-features = false }
kona-executor = { path = "crates/executor", version = "0.0.5", default-features = false }
kona-common = { path = "crates/proof-sdk/common", version = "0.0.4", default-features = false }
kona-common-proc = { path = "crates/proof-sdk/common-proc", version = "0.0.5", default-features = false }
kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.0.4", default-features = false }
kona-derive = { path = "crates/derive", version = "0.0.7", default-features = false }
kona-driver = { path = "crates/driver", version = "0.0.1", default-features = false }
kona-executor = { path = "crates/executor", version = "0.0.6", default-features = false }
kona-common = { path = "crates/proof-sdk/common", version = "0.0.5", default-features = false }
kona-common-proc = { path = "crates/proof-sdk/common-proc", version = "0.0.6", default-features = false }
kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.0.5", default-features = false }
kona-proof = { path = "crates/proof-sdk/proof", version = "0.0.1", default-features = false }

# Alloy
Expand Down
17 changes: 17 additions & 0 deletions crates/derive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.7](https://github.com/anton-rs/kona/compare/kona-derive-v0.0.6...kona-derive-v0.0.7) - 2024-11-20

### Added

- *(driver)* Abstract, Default Pipeline ([#796](https://github.com/anton-rs/kona/pull/796))

### Other

- *(derive)* remove batch reader ([#826](https://github.com/anton-rs/kona/pull/826))
- op-alloy 0.6.8 ([#830](https://github.com/anton-rs/kona/pull/830))
- *(driver)* use tracing macros ([#823](https://github.com/anton-rs/kona/pull/823))
- *(deps)* op-alloy 0.6.7 ([#824](https://github.com/anton-rs/kona/pull/824))
- v0.6.6 op-alloy ([#804](https://github.com/anton-rs/kona/pull/804))
- *(workspace)* Migrate back to `thiserror` v2 ([#811](https://github.com/anton-rs/kona/pull/811))
- *(derive)* Re-export types ([#790](https://github.com/anton-rs/kona/pull/790))
- Revert "chore: bump alloy deps ([#788](https://github.com/anton-rs/kona/pull/788))" ([#791](https://github.com/anton-rs/kona/pull/791))

## [0.0.6](https://github.com/anton-rs/kona/compare/kona-derive-v0.0.5...kona-derive-v0.0.6) - 2024-11-06

### Added
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.0.6"
version = "0.0.7"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
26 changes: 26 additions & 0 deletions crates/driver/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.0.1](https://github.com/anton-rs/kona/compare/kona-driver-v0.0.0...kona-driver-v0.0.1) - 2024-11-20

### Added

- *(driver,client)* Pipeline Cursor Refactor ([#798](https://github.com/anton-rs/kona/pull/798))
- *(driver)* Abstract, Default Pipeline ([#796](https://github.com/anton-rs/kona/pull/796))

### Fixed

- imports ([#829](https://github.com/anton-rs/kona/pull/829))
- *(client)* SyncStart Refactor ([#797](https://github.com/anton-rs/kona/pull/797))

### Other

- *(driver)* use tracing macros ([#823](https://github.com/anton-rs/kona/pull/823))
- *(driver)* use tracing macros ([#822](https://github.com/anton-rs/kona/pull/822))
- *(workspace)* Migrate back to `thiserror` v2 ([#811](https://github.com/anton-rs/kona/pull/811))
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.0.0"
version = "0.0.1"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
11 changes: 11 additions & 0 deletions crates/executor/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.0.6](https://github.com/anton-rs/kona/compare/kona-executor-v0.0.5...kona-executor-v0.0.6) - 2024-11-20

### Added

- *(mpt)* Extend `TrieProvider` in `kona-executor` ([#813](https://github.com/anton-rs/kona/pull/813))

### Other

- *(driver)* use tracing macros ([#823](https://github.com/anton-rs/kona/pull/823))
- *(workspace)* Migrate back to `thiserror` v2 ([#811](https://github.com/anton-rs/kona/pull/811))

## [0.0.5](https://github.com/anton-rs/kona/compare/kona-executor-v0.0.4...kona-executor-v0.0.5) - 2024-11-06

### Added
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.0.5"
version = "0.0.6"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
16 changes: 16 additions & 0 deletions crates/mpt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.7](https://github.com/anton-rs/kona/compare/kona-mpt-v0.0.6...kona-mpt-v0.0.7) - 2024-11-20

### Added

- *(mpt)* Extend `TrieProvider` in `kona-executor` ([#813](https://github.com/anton-rs/kona/pull/813))

### Fixed

- *(mpt)* Remove unnused collapse ([#808](https://github.com/anton-rs/kona/pull/808))

### Other

- v0.6.6 op-alloy ([#804](https://github.com/anton-rs/kona/pull/804))
- *(workspace)* Migrate back to `thiserror` v2 ([#811](https://github.com/anton-rs/kona/pull/811))
- Revert "chore: bump alloy deps ([#788](https://github.com/anton-rs/kona/pull/788))" ([#791](https://github.com/anton-rs/kona/pull/791))

## [0.0.6](https://github.com/anton-rs/kona/compare/kona-mpt-v0.0.5...kona-mpt-v0.0.6) - 2024-11-06

### Added
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.0.6"
version = "0.0.7"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/proof-sdk/common-proc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.6](https://github.com/anton-rs/kona/compare/kona-common-proc-v0.0.5...kona-common-proc-v0.0.6) - 2024-11-20

### Other

- updated the following local packages: kona-common

## [0.0.5](https://github.com/anton-rs/kona/compare/kona-common-proc-v0.0.4...kona-common-proc-v0.0.5) - 2024-11-06

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/proof-sdk/common-proc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kona-common-proc"
description = "Proc macro extension for the `kona-common` crate."
version = "0.0.5"
version = "0.0.6"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/proof-sdk/common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.5](https://github.com/anton-rs/kona/compare/kona-common-v0.0.4...kona-common-v0.0.5) - 2024-11-20

### Other

- *(workspace)* Reorganize SDK ([#816](https://github.com/anton-rs/kona/pull/816))

## [0.0.4](https://github.com/anton-rs/kona/compare/kona-common-v0.0.3...kona-common-v0.0.4) - 2024-10-25

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/proof-sdk/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kona-common"
description = "Common traits and system interfaces for developing client programs on top of Fault Proof VMs."
version = "0.0.4"
version = "0.0.5"
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.0.5](https://github.com/anton-rs/kona/compare/kona-preimage-v0.0.4...kona-preimage-v0.0.5) - 2024-11-20

### Added

- *(preimage)* Decouple from `kona-common` ([#817](https://github.com/anton-rs/kona/pull/817))

### Other

- *(driver)* use tracing macros ([#823](https://github.com/anton-rs/kona/pull/823))
- *(workspace)* Reorganize SDK ([#816](https://github.com/anton-rs/kona/pull/816))

## [0.0.4](https://github.com/anton-rs/kona/compare/kona-preimage-v0.0.3...kona-preimage-v0.0.4) - 2024-10-25

### Added
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.0.4"
version = "0.0.5"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
15 changes: 15 additions & 0 deletions crates/proof-sdk/proof/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.1](https://github.com/anton-rs/kona/releases/tag/kona-proof-v0.0.1) - 2024-11-20

### Added

- *(workspace)* `kona-proof` ([#818](https://github.com/anton-rs/kona/pull/818))

### Fixed

- imports ([#829](https://github.com/anton-rs/kona/pull/829))

### Other

- op-alloy 0.6.8 ([#830](https://github.com/anton-rs/kona/pull/830))
- *(driver)* use tracing macros ([#823](https://github.com/anton-rs/kona/pull/823))

## [0.0.4](https://github.com/anton-rs/kona/compare/kona-common-v0.0.3...kona-common-v0.0.4) - 2024-10-25

### Added
Expand Down

0 comments on commit 7d66132

Please sign in to comment.