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 Sep 10, 2024
1 parent 3759e2f commit 8400888
Show file tree
Hide file tree
Showing 10 changed files with 56 additions and 12 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ lto = "fat"
[workspace.dependencies]
# Workspace
kona-client = { path = "bin/client", version = "0.1.0" }
kona-mpt = { path = "crates/mpt", version = "0.0.3" }
kona-mpt = { path = "crates/mpt", version = "0.0.4" }
kona-common = { path = "crates/common", version = "0.0.3" }
kona-preimage = { path = "crates/preimage", version = "0.0.3" }
kona-executor = { path = "crates/executor", version = "0.0.2" }
kona-executor = { path = "crates/executor", version = "0.0.3" }
kona-common-proc = { path = "crates/common-proc", version = "0.0.3" }
kona-derive = { path = "crates/derive", version = "0.0.3", default-features = false }
kona-primitives = { path = "crates/primitives", version = "0.0.2", default-features = false }
kona-derive = { path = "crates/derive", version = "0.0.4", default-features = false }
kona-primitives = { path = "crates/primitives", version = "0.0.3", default-features = false }

# General
anyhow = { version = "1.0.86", default-features = false }
Expand Down
16 changes: 16 additions & 0 deletions crates/derive/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.4](https://github.com/anton-rs/kona/compare/kona-derive-v0.0.3...kona-derive-v0.0.4) - 2024-09-10

### Added

- *(primitives)* reuse op-alloy-protocol channel and block types ([#499](https://github.com/anton-rs/kona/pull/499))

### Fixed

- *(primitives)* use consensus hardforks ([#497](https://github.com/anton-rs/kona/pull/497))
- *(primitives)* re-use op-alloy frame type ([#492](https://github.com/anton-rs/kona/pull/492))

### Other

- Bumps Dependency Versions ([#520](https://github.com/anton-rs/kona/pull/520))
- *(primitives)* rm RawTransaction ([#505](https://github.com/anton-rs/kona/pull/505))

## [0.0.3](https://github.com/anton-rs/kona/compare/kona-derive-v0.0.2...kona-derive-v0.0.3) - 2024-09-04

### 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.3"
version = "0.0.4"
edition.workspace = true
authors.workspace = true
license.workspace = true
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.3](https://github.com/anton-rs/kona/compare/kona-executor-v0.0.2...kona-executor-v0.0.3) - 2024-09-10

### Other

- Bumps Dependency Versions ([#520](https://github.com/anton-rs/kona/pull/520))
- *(primitives)* rm RawTransaction ([#505](https://github.com/anton-rs/kona/pull/505))

## [0.0.2](https://github.com/anton-rs/kona/compare/kona-executor-v0.0.1...kona-executor-v0.0.2) - 2024-09-04

### 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.2"
version = "0.0.3"
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.0.4](https://github.com/anton-rs/kona/compare/kona-mpt-v0.0.3...kona-mpt-v0.0.4) - 2024-09-10

### Fixed

- *(mpt)* Empty list walker ([#493](https://github.com/anton-rs/kona/pull/493))

## [0.0.3](https://github.com/anton-rs/kona/compare/kona-mpt-v0.0.2...kona-mpt-v0.0.3) - 2024-09-04

### 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.3"
version = "0.0.4"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down
15 changes: 15 additions & 0 deletions crates/primitives/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.3](https://github.com/anton-rs/kona/compare/kona-primitives-v0.0.2...kona-primitives-v0.0.3) - 2024-09-10

### Added

- *(primitives)* reuse op-alloy-protocol channel and block types ([#499](https://github.com/anton-rs/kona/pull/499))

### Fixed

- *(primitives)* use consensus hardforks ([#497](https://github.com/anton-rs/kona/pull/497))
- *(primitives)* re-use op-alloy frame type ([#492](https://github.com/anton-rs/kona/pull/492))

### Other

- *(primitives)* rm RawTransaction ([#505](https://github.com/anton-rs/kona/pull/505))

## [0.0.2](https://github.com/anton-rs/kona/compare/kona-primitives-v0.0.1...kona-primitives-v0.0.2) - 2024-09-04

### 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.2"
version = "0.0.3"
edition.workspace = true
authors.workspace = true
license.workspace = true
Expand Down

0 comments on commit 8400888

Please sign in to comment.