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 Jul 11, 2024
1 parent 02b1999 commit ce09d9e
Show file tree
Hide file tree
Showing 16 changed files with 78 additions and 26 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions bin/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ revm.workspace = true
# local
kona-common = { path = "../../crates/common", version = "0.0.2" }
kona-common-proc = { path = "../../crates/common-proc", version = "0.0.2" }
kona-preimage = { path = "../../crates/preimage", version = "0.0.2" }
kona-primitives = { path = "../../crates/primitives", version = "0.0.1" }
kona-mpt = { path = "../../crates/mpt", version = "0.0.2" }
kona-derive = { path = "../../crates/derive", default-features = false, version = "0.0.2" }
kona-executor = { path = "../../crates/executor", version = "0.0.1" }
kona-preimage = { path = "../../crates/preimage", version = "0.0.3" }
kona-primitives = { path = "../../crates/primitives", version = "0.0.2" }
kona-mpt = { path = "../../crates/mpt", version = "0.0.3" }
kona-derive = { path = "../../crates/derive", default-features = false, version = "0.0.3" }
kona-executor = { path = "../../crates/executor", version = "0.0.2" }

# external
tracing-subscriber = { version = "0.3.18", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions bin/host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ async-trait.workspace = true
# local
kona-client = { path = "../client", version = "0.1.0" }
kona-common = { path = "../../crates/common", version = "0.0.2" }
kona-preimage = { path = "../../crates/preimage", version = "0.0.2" }
kona-mpt = { path = "../../crates/mpt", version = "0.0.2" }
kona-derive = { path = "../../crates/derive", version = "0.0.2", features = ["online"] }
kona-preimage = { path = "../../crates/preimage", version = "0.0.3" }
kona-mpt = { path = "../../crates/mpt", version = "0.0.3" }
kona-derive = { path = "../../crates/derive", version = "0.0.3", features = ["online"] }

# external
alloy-provider = { version = "0.1" }
Expand Down
25 changes: 25 additions & 0 deletions crates/derive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.3](https://github.com/ethereum-optimism/kona/compare/kona-derive-v0.0.2...kona-derive-v0.0.3) - 2024-07-11

### Added
- increase granularity ([#365](https://github.com/ethereum-optimism/kona/pull/365))
- *(derive)* histogram for number of channels for given frame counts ([#337](https://github.com/ethereum-optimism/kona/pull/337))
- *(derive)* track the current channel size ([#331](https://github.com/ethereum-optimism/kona/pull/331))
- *(derive)* more stage metrics ([#326](https://github.com/ethereum-optimism/kona/pull/326))
- *(derive)* Granular Provider Metrics ([#325](https://github.com/ethereum-optimism/kona/pull/325))
- *(derive)* Stage Level Metrics ([#309](https://github.com/ethereum-optimism/kona/pull/309))
- *(examples)* Trusted Sync Metrics ([#308](https://github.com/ethereum-optimism/kona/pull/308))

### Fixed
- *(examples)* Start N Blocks Back from Tip ([#349](https://github.com/ethereum-optimism/kona/pull/349))
- *(derive)* Unused var w/o `metrics` feature ([#345](https://github.com/ethereum-optimism/kona/pull/345))
- *(derive)* bind the Pipeline trait to Iterator ([#334](https://github.com/ethereum-optimism/kona/pull/334))
- *(derive)* prefix all metric names ([#330](https://github.com/ethereum-optimism/kona/pull/330))
- *(examples)* don't panic on validation fetch failure ([#327](https://github.com/ethereum-optimism/kona/pull/327))
- *(derive)* Warnings with metrics macro ([#322](https://github.com/ethereum-optimism/kona/pull/322))

### Other
- *(derive)* Remove noisy batch logs ([#329](https://github.com/ethereum-optimism/kona/pull/329))
- clean up trusted sync loop ([#318](https://github.com/ethereum-optimism/kona/pull/318))
- *(docs)* Label Cleanup ([#307](https://github.com/ethereum-optimism/kona/pull/307))
- *(derive)* add targets to stage logs ([#310](https://github.com/ethereum-optimism/kona/pull/310))

## [0.0.2](https://github.com/ethereum-optimism/kona/compare/kona-derive-v0.0.1...kona-derive-v0.0.2) - 2024-06-22

### Added
Expand Down
4 changes: 2 additions & 2 deletions 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.2"
version = "0.0.3"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand All @@ -25,7 +25,7 @@ async-trait.workspace = true
revm = { workspace = true, optional = true }

# Local
kona-primitives = { path = "../primitives", version = "0.0.1" }
kona-primitives = { path = "../primitives", version = "0.0.2" }

# External
alloy-sol-types = { version = "0.7.6", default-features = false }
Expand Down
7 changes: 7 additions & 0 deletions crates/executor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.2](https://github.com/ethereum-optimism/kona/compare/kona-executor-v0.0.1...kona-executor-v0.0.2) - 2024-07-11

### Added
- *(executor)* `StatelessL2BlockExecutor` benchmarks ([#350](https://github.com/ethereum-optimism/kona/pull/350))
- *(executor)* Generic precompile overrides ([#340](https://github.com/ethereum-optimism/kona/pull/340))
- *(executor)* Builder pattern for `StatelessL2BlockExecutor` ([#339](https://github.com/ethereum-optimism/kona/pull/339))

## [0.0.1](https://github.com/ethereum-optimism/kona/releases/tag/kona-executor-v0.0.1) - 2024-06-22

### Other
Expand Down
6 changes: 3 additions & 3 deletions 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.1"
version = "0.0.2"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand All @@ -20,8 +20,8 @@ op-alloy-consensus.workspace = true
revm = { workspace = true, features = ["optimism"] }

# local
kona-mpt = { path = "../mpt", version = "0.0.2" }
kona-derive = { path = "../derive", version = "0.0.2" }
kona-mpt = { path = "../mpt", version = "0.0.3" }
kona-derive = { path = "../derive", version = "0.0.3" }

[dev-dependencies]
serde = { version = "1.0.197", features = ["derive"] }
Expand Down
5 changes: 5 additions & 0 deletions crates/mpt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.3](https://github.com/ethereum-optimism/kona/compare/kona-mpt-v0.0.2...kona-mpt-v0.0.3) - 2024-07-11

### Added
- *(mpt)* `TrieNode` benchmarks ([#351](https://github.com/ethereum-optimism/kona/pull/351))

## [0.0.2](https://github.com/ethereum-optimism/kona/compare/kona-mpt-v0.0.1...kona-mpt-v0.0.2) - 2024-06-22

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

## [Unreleased]

## [0.0.2](https://github.com/ethereum-optimism/kona/compare/kona-plasma-v0.0.1...kona-plasma-v0.0.2) - 2024-07-11

### Other
- updated the following local packages: kona-derive, kona-primitives

## [0.0.1](https://github.com/ethereum-optimism/kona/releases/tag/kona-plasma-v0.0.1) - 2024-06-22

### Added
Expand Down
6 changes: 3 additions & 3 deletions crates/plasma/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kona-plasma"
description = "Plasma Data Availability Adapter"
version = "0.0.1"
version = "0.0.2"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand All @@ -17,8 +17,8 @@ alloy-primitives = { workspace = true, features = ["rlp"] }
async-trait.workspace = true

# Local
kona-primitives = { path = "../primitives", version = "0.0.1" }
kona-derive = { path = "../derive", version = "0.0.2" }
kona-primitives = { path = "../primitives", version = "0.0.2" }
kona-derive = { path = "../derive", version = "0.0.3" }

# `serde` feature dependencies
serde = { version = "1.0.203", default-features = false, features = ["derive"], optional = true }
Expand Down
5 changes: 5 additions & 0 deletions crates/preimage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.3](https://github.com/ethereum-optimism/kona/compare/kona-preimage-v0.0.2...kona-preimage-v0.0.3) - 2024-07-11

### Other
- *(preimage)* Remove dynamic dispatch ([#354](https://github.com/ethereum-optimism/kona/pull/354))

## [0.0.2](https://github.com/ethereum-optimism/kona/compare/kona-preimage-v0.0.1...kona-preimage-v0.0.2) - 2024-06-22

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

## [Unreleased]

## [0.0.2](https://github.com/ethereum-optimism/kona/compare/kona-primitives-v0.0.1...kona-primitives-v0.0.2) - 2024-07-11

### Other
- Bump `superchain-registry` version ([#306](https://github.com/ethereum-optimism/kona/pull/306))

## [0.0.1](https://github.com/ethereum-optimism/kona/releases/tag/kona-primitives-v0.0.1) - 2024-06-22

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kona-primitives"
description = "Primitive types for kona crates"
version = "0.0.1"
version = "0.0.2"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion examples/trusted-sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ homepage.workspace = true
anyhow.workspace = true
tracing.workspace = true
alloy-primitives = { workspace = true, features = ["serde"] }
kona-derive = { path = "../../crates/derive", version = "0.0.2", features = ["serde", "k256", "online", "metrics"] }
kona-derive = { path = "../../crates/derive", version = "0.0.3", features = ["serde", "k256", "online", "metrics"] }

# Custom dependencies
lazy_static = "1.5.0"
Expand Down

0 comments on commit ce09d9e

Please sign in to comment.