Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release #30

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 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,15 +62,15 @@ lto = "fat"

[workspace.dependencies]
# Workspace
kona-mpt = { path = "crates/mpt", version = "0.1.0", default-features = false }
kona-derive = { path = "crates/derive", version = "0.1.0", default-features = false }
kona-driver = { path = "crates/driver", version = "0.1.0", default-features = false }
kona-executor = { path = "crates/executor", version = "0.1.0", default-features = false }
kona-mpt = { path = "crates/mpt", version = "0.1.1", default-features = false }
kona-derive = { path = "crates/derive", version = "0.2.0", default-features = false }
kona-driver = { path = "crates/driver", version = "0.2.0", default-features = false }
kona-executor = { path = "crates/executor", version = "0.2.0", default-features = false }
kona-client = { path = "bin/client", version = "0.1.0", default-features = false }
kona-std-fpvm = { path = "crates/proof-sdk/std-fpvm", version = "0.1.0", default-features = false }
kona-std-fpvm = { path = "crates/proof-sdk/std-fpvm", version = "0.1.1", default-features = false }
kona-std-fpvm-proc = { path = "crates/proof-sdk/std-fpvm-proc", version = "0.1.0", default-features = false }
kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.1.0", default-features = false }
kona-proof = { path = "crates/proof-sdk/proof", version = "0.1.0", default-features = false }
kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.2.0", default-features = false }
kona-proof = { path = "crates/proof-sdk/proof", version = "0.2.0", default-features = false }

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

## [Unreleased]

## [0.2.0](https://github.com/succinctlabs/kona/compare/kona-derive-v0.1.0...kona-derive-v0.2.0) - 2024-11-29

### Added

- *(workspace)* Isolate FPVM-specific platform code ([#821](https://github.com/succinctlabs/kona/pull/821))

### Other

- *(derive)* remove indexed blob hash ([#847](https://github.com/succinctlabs/kona/pull/847))

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

### 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.1.0"
version = "0.2.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
12 changes: 12 additions & 0 deletions crates/driver/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/succinctlabs/kona/compare/kona-driver-v0.1.0...kona-driver-v0.2.0) - 2024-11-29

### Added

- *(driver)* wait for engine ([#851](https://github.com/succinctlabs/kona/pull/851))
- *(driver)* refines the executor interface for the driver ([#850](https://github.com/succinctlabs/kona/pull/850))

### Other

- *(driver)* advance with optional target ([#848](https://github.com/succinctlabs/kona/pull/848))
- *(driver)* visibility ([#834](https://github.com/succinctlabs/kona/pull/834))

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

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

## [Unreleased]

## [0.2.0](https://github.com/succinctlabs/kona/compare/kona-executor-v0.1.0...kona-executor-v0.2.0) - 2024-11-29

### Added

- *(driver)* refines the executor interface for the driver ([#850](https://github.com/succinctlabs/kona/pull/850))

### Fixed

- use non problematic hashmap fns ([#853](https://github.com/succinctlabs/kona/pull/853))

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

### 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.1.0"
version = "0.2.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/mpt/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.1.1](https://github.com/succinctlabs/kona/compare/kona-mpt-v0.1.0...kona-mpt-v0.1.1) - 2024-11-29

### Other

- update Cargo.toml dependencies

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

### 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.1.0"
version = "0.1.1"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/proof-sdk/preimage/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.2.0](https://github.com/succinctlabs/kona/compare/kona-preimage-v0.1.0...kona-preimage-v0.2.0) - 2024-11-29

### Added

- *(workspace)* Isolate FPVM-specific platform code ([#821](https://github.com/succinctlabs/kona/pull/821))

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

### 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.1.0"
version = "0.2.0"
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.2.0](https://github.com/succinctlabs/kona/compare/kona-proof-v0.1.0...kona-proof-v0.2.0) - 2024-11-29

### Added

- *(driver)* wait for engine ([#851](https://github.com/succinctlabs/kona/pull/851))
- *(client)* Invalidate impossibly old claims ([#852](https://github.com/succinctlabs/kona/pull/852))
- *(driver)* refines the executor interface for the driver ([#850](https://github.com/succinctlabs/kona/pull/850))
- *(workspace)* Isolate FPVM-specific platform code ([#821](https://github.com/succinctlabs/kona/pull/821))

### Other

- *(host)* Hint Parsing Cleanup ([#844](https://github.com/succinctlabs/kona/pull/844))
- *(derive)* remove indexed blob hash ([#847](https://github.com/succinctlabs/kona/pull/847))
- L2ExecutePayloadProof Hint Type ([#832](https://github.com/succinctlabs/kona/pull/832))

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

### 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.1.0"
version = "0.2.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions crates/proof-sdk/std-fpvm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# 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.1.1](https://github.com/succinctlabs/kona/compare/kona-std-fpvm-v0.1.0...kona-std-fpvm-v0.1.1) - 2024-11-29

### Other

- updated the following local packages: kona-preimage
2 changes: 1 addition & 1 deletion crates/proof-sdk/std-fpvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kona-std-fpvm"
description = "Platform specific APIs for interacting with Fault Proof VM kernels."
version = "0.1.0"
version = "0.1.1"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down