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

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
24 changes: 12 additions & 12 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,30 +66,30 @@ kona-host = { path = "bin/host", version = "0.1.0", default-features = false }
kona-client = { path = "bin/client", version = "0.1.0", default-features = false }

# Workspace Protocol
kona-derive = { path = "crates/protocol/derive", version = "0.2.3", default-features = false }
kona-derive = { path = "crates/protocol/derive", version = "0.2.4", default-features = false }
kona-hardforks = { path = "crates/protocol/hardforks", version = "0.1.0", default-features = false }
kona-protocol = { path = "crates/protocol/protocol", version = "0.1.0", default-features = false }
kona-genesis = { path = "crates/protocol/genesis", version = "0.1.0", default-features = false }
kona-registry = { path = "crates/protocol/registry", version = "0.1.0", default-features = false }
kona-driver = { path = "crates/protocol/driver", version = "0.2.3", default-features = false }
kona-driver = { path = "crates/protocol/driver", version = "0.2.4", default-features = false }
kona-interop = { path = "crates/protocol/interop", version = "0.1.2", default-features = false }

# External
kona-net = { path = "crates/external/net", version = "0.1.0", default-features = false }
kona-net = { path = "crates/external/net", version = "0.1.1", default-features = false }
kona-rpc = { path = "crates/external/rpc", version = "0.1.0", default-features = false }

# Providers
kona-providers-local = { path = "crates/providers/providers-local", version = "0.1.0", default-features = false }
kona-providers-alloy = { path = "crates/providers/providers-alloy", version = "0.1.0", default-features = false }
kona-providers-alloy = { path = "crates/providers/providers-alloy", version = "0.1.1", default-features = false }

# Proof
kona-mpt = { path = "crates/proof/mpt", version = "0.1.2", default-features = false }
kona-proof = { path = "crates/proof/proof", version = "0.2.3", default-features = false }
kona-executor = { path = "crates/proof/executor", version = "0.2.3", default-features = false }
kona-std-fpvm = { path = "crates/proof/std-fpvm", version = "0.1.2", default-features = false }
kona-preimage = { path = "crates/proof/preimage", version = "0.2.1", default-features = false }
kona-std-fpvm-proc = { path = "crates/proof/std-fpvm-proc", version = "0.1.2", default-features = false }
kona-proof-interop = { path = "crates/proof/proof-interop", version = "0.1.1", default-features = false }
kona-mpt = { path = "crates/proof/mpt", version = "0.2.0", default-features = false }
kona-proof = { path = "crates/proof/proof", version = "0.2.4", default-features = false }
kona-executor = { path = "crates/proof/executor", version = "0.3.0", default-features = false }
kona-std-fpvm = { path = "crates/proof/std-fpvm", version = "0.1.3", default-features = false }
kona-preimage = { path = "crates/proof/preimage", version = "0.2.2", default-features = false }
kona-std-fpvm-proc = { path = "crates/proof/std-fpvm-proc", version = "0.1.3", default-features = false }
kona-proof-interop = { path = "crates/proof/proof-interop", version = "0.1.2", default-features = false }

# Workspace Utilities
kona-serde = { path = "crates/utilities/serde", version = "0.1.0", default-features = false }
Expand Down
14 changes: 14 additions & 0 deletions bin/nexus/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/op-rs/kona/compare/kona-nexus-v0.1.0...kona-nexus-v0.1.1) - 2025-02-21

### Other

- updated the following local packages: kona-net
2 changes: 1 addition & 1 deletion bin/nexus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kona-nexus"
version = "0.1.0"
version = "0.1.1"
description = "Kona Networking Component Runner"

edition.workspace = true
Expand Down
14 changes: 14 additions & 0 deletions crates/external/net/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/op-rs/kona/compare/kona-net-v0.1.0...kona-net-v0.1.1) - 2025-02-21

### Added

- Kona Optimism Monorepo (#1055)
2 changes: 1 addition & 1 deletion crates/external/net/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kona-net"
version = "0.1.0"
version = "0.1.1"
description = "Consensus networking library for the OP Stack"

edition.workspace = true
Expand Down
11 changes: 11 additions & 0 deletions crates/proof/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.3.0](https://github.com/op-rs/kona/compare/kona-executor-v0.2.3...kona-executor-v0.3.0) - 2025-02-21

### Added

- Kona Optimism Monorepo (#1055)
- *(client)* Wire up `L2PayloadWitness` hint for single-chain proof (#1034)

### Other

- Restructure Kona to be more Extensible (#1031)

## [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/proof/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.3.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
10 changes: 10 additions & 0 deletions crates/proof/mpt/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/op-rs/kona/compare/kona-mpt-v0.1.2...kona-mpt-v0.2.0) - 2025-02-21

### Added

- *(client)* Wire up `L2PayloadWitness` hint for single-chain proof (#1034)

### Other

- Restructure Kona to be more Extensible (#1031)

## [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/proof/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.2.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
10 changes: 10 additions & 0 deletions crates/proof/preimage/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.2](https://github.com/op-rs/kona/compare/kona-preimage-v0.2.1...kona-preimage-v0.2.2) - 2025-02-21

### Added

- Kona Optimism Monorepo (#1055)

### Other

- Restructure Kona to be more Extensible (#1031)

## [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/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
11 changes: 11 additions & 0 deletions crates/proof/proof-interop/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ 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-21

### Added

- Kona Optimism Monorepo (#1055)
- *(client)* Wire up `L2PayloadWitness` hint for single-chain proof (#1034)

### Other

- Restructure Kona to be more Extensible (#1031)

## [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/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
11 changes: 11 additions & 0 deletions crates/proof/proof/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-proof-v0.2.3...kona-proof-v0.2.4) - 2025-02-21

### Added

- Kona Optimism Monorepo (#1055)
- *(client)* Wire up `L2PayloadWitness` hint for single-chain proof (#1034)

### Other

- Restructure Kona to be more Extensible (#1031)

## [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/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
6 changes: 6 additions & 0 deletions crates/proof/std-fpvm-proc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ 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-21

### Other

- Restructure Kona to be more Extensible (#1031)

## [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
2 changes: 1 addition & 1 deletion crates/proof/std-fpvm-proc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kona-std-fpvm-proc"
description = "Proc macro entry point for `kona-std-fpvm` targeted programs."
version = "0.1.2"
version = "0.1.3"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
10 changes: 10 additions & 0 deletions crates/proof/std-fpvm/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-v0.1.2...kona-std-fpvm-v0.1.3) - 2025-02-21

### Fixed

- *(std-fpvm)* Allow non-const fn with mut ref (#1057)

### Other

- Restructure Kona to be more Extensible (#1031)

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

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/proof/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.2"
version = "0.1.3"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
10 changes: 10 additions & 0 deletions crates/protocol/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.4](https://github.com/op-rs/kona/compare/kona-derive-v0.2.3...kona-derive-v0.2.4) - 2025-02-21

### Added

- Kona Optimism Monorepo (#1055)

### Other

- Restructure Kona to be more Extensible (#1031)

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