From ae6b6c4a44c995ebd617a482d6464525a1f12e73 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 18:47:37 +0000 Subject: [PATCH] chore: release --- Cargo.lock | 16 ++++----- Cargo.toml | 16 ++++----- crates/common-proc/CHANGELOG.md | 6 ++++ crates/common-proc/Cargo.toml | 2 +- crates/common/CHANGELOG.md | 17 +++++++++ crates/common/Cargo.toml | 2 +- crates/derive/CHANGELOG.md | 55 +++++++++++++++++++++++++++++ crates/derive/Cargo.toml | 2 +- crates/executor/CHANGELOG.md | 25 +++++++++++++ crates/executor/Cargo.toml | 2 +- crates/mpt/CHANGELOG.md | 20 +++++++++++ crates/mpt/Cargo.toml | 2 +- crates/preimage/CHANGELOG.md | 18 ++++++++++ crates/preimage/Cargo.toml | 2 +- crates/primitives/CHANGELOG.md | 24 +++++++++++++ crates/primitives/Cargo.toml | 2 +- crates/providers-alloy/CHANGELOG.md | 28 +++++++++++++++ crates/providers/CHANGELOG.md | 16 +++++++++ crates/providers/Cargo.toml | 2 +- 19 files changed, 233 insertions(+), 24 deletions(-) create mode 100644 crates/providers-alloy/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index b891a2df8..ac71cfa5d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2025,7 +2025,7 @@ dependencies = [ [[package]] name = "kona-common" -version = "0.0.3" +version = "0.0.4" dependencies = [ "cfg-if", "linked_list_allocator", @@ -2034,7 +2034,7 @@ dependencies = [ [[package]] name = "kona-common-proc" -version = "0.0.3" +version = "0.0.4" dependencies = [ "anyhow", "cfg-if", @@ -2046,7 +2046,7 @@ dependencies = [ [[package]] name = "kona-derive" -version = "0.0.3" +version = "0.0.4" dependencies = [ "alloc-no-stdlib", "alloy-consensus", @@ -2082,7 +2082,7 @@ dependencies = [ [[package]] name = "kona-executor" -version = "0.0.2" +version = "0.0.3" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2143,7 +2143,7 @@ dependencies = [ [[package]] name = "kona-mpt" -version = "0.0.3" +version = "0.0.4" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2168,7 +2168,7 @@ dependencies = [ [[package]] name = "kona-preimage" -version = "0.0.3" +version = "0.0.4" dependencies = [ "alloy-primitives", "async-trait", @@ -2183,7 +2183,7 @@ dependencies = [ [[package]] name = "kona-primitives" -version = "0.0.2" +version = "0.0.3" dependencies = [ "alloy-eips", "alloy-primitives", @@ -2199,7 +2199,7 @@ dependencies = [ [[package]] name = "kona-providers" -version = "0.0.1" +version = "0.0.2" dependencies = [ "alloy-consensus", "alloy-primitives", diff --git a/Cargo.toml b/Cargo.toml index 76b22c4a0..f8fcdc4b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,14 +57,14 @@ lto = "fat" [workspace.dependencies] # Workspace kona-client = { path = "bin/client", version = "0.1.0" } -kona-mpt = { path = "crates/mpt", version = "0.0.3" } -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-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-providers = { path = "crates/providers", version = "0.0.1" } +kona-mpt = { path = "crates/mpt", version = "0.0.4" } +kona-common = { path = "crates/common", version = "0.0.4" } +kona-preimage = { path = "crates/preimage", version = "0.0.4" } +kona-executor = { path = "crates/executor", version = "0.0.3" } +kona-common-proc = { path = "crates/common-proc", version = "0.0.4" } +kona-derive = { path = "crates/derive", version = "0.0.4", default-features = false } +kona-primitives = { path = "crates/primitives", version = "0.0.3", default-features = false } +kona-providers = { path = "crates/providers", version = "0.0.2" } kona-providers-alloy = { path = "crates/providers-alloy", version = "0.0.1", default-features = false } # General diff --git a/crates/common-proc/CHANGELOG.md b/crates/common-proc/CHANGELOG.md index 0039770d6..71f8599e2 100644 --- a/crates/common-proc/CHANGELOG.md +++ b/crates/common-proc/CHANGELOG.md @@ -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-common-proc-v0.0.3...kona-common-proc-v0.0.4) - 2024-10-08 + +### Other + +- update Cargo.toml dependencies + ## [0.0.3](https://github.com/anton-rs/kona/compare/kona-common-proc-v0.0.2...kona-common-proc-v0.0.3) - 2024-09-04 ### Added diff --git a/crates/common-proc/Cargo.toml b/crates/common-proc/Cargo.toml index becf9ce30..5862be303 100644 --- a/crates/common-proc/Cargo.toml +++ b/crates/common-proc/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-common-proc" description = "Proc macro extension for the `kona-common` crate." -version = "0.0.3" +version = "0.0.4" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/common/CHANGELOG.md b/crates/common/CHANGELOG.md index 0b8eaeff7..c1a44deee 100644 --- a/crates/common/CHANGELOG.md +++ b/crates/common/CHANGELOG.md @@ -6,6 +6,23 @@ 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-common-v0.0.3...kona-common-v0.0.4) - 2024-10-08 + +### Added + +- *(preimage/common)* Migrate to `thiserror` ([#543](https://github.com/anton-rs/kona/pull/543)) + +### Fixed + +- *(workspace)* hoist and fix lints ([#577](https://github.com/anton-rs/kona/pull/577)) + +### Other + +- *(preimage)* Test Coverage ([#634](https://github.com/anton-rs/kona/pull/634)) +- test coverage for common ([#629](https://github.com/anton-rs/kona/pull/629)) +- doc logos ([#609](https://github.com/anton-rs/kona/pull/609)) +- *(workspace)* Allow stdlib in `cfg(test)` ([#548](https://github.com/anton-rs/kona/pull/548)) + ## [0.0.3](https://github.com/anton-rs/kona/compare/kona-common-v0.0.2...kona-common-v0.0.3) - 2024-09-04 ### Added diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml index c6d85d2c2..5e961a8eb 100644 --- a/crates/common/Cargo.toml +++ b/crates/common/Cargo.toml @@ -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.3" +version = "0.0.4" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/derive/CHANGELOG.md b/crates/derive/CHANGELOG.md index 06d9f2bbd..731ebf7cd 100644 --- a/crates/derive/CHANGELOG.md +++ b/crates/derive/CHANGELOG.md @@ -6,6 +6,61 @@ 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-10-08 + +### Added + +- frame queue tests ([#613](https://github.com/anton-rs/kona/pull/613)) +- *(derive)* Holocene flush signal ([#612](https://github.com/anton-rs/kona/pull/612)) +- *(derive)* Add `Signal` API ([#611](https://github.com/anton-rs/kona/pull/611)) +- *(derive)* BatchQueue Update [Holocene] ([#601](https://github.com/anton-rs/kona/pull/601)) +- *(derive)* bump op-alloy dep ([#605](https://github.com/anton-rs/kona/pull/605)) +- kona-providers ([#596](https://github.com/anton-rs/kona/pull/596)) +- *(derive)* Span batch prefix checks ([#592](https://github.com/anton-rs/kona/pull/592)) +- *(derive)* `BatchStream` buffering ([#590](https://github.com/anton-rs/kona/pull/590)) +- *(derive)* BatchStreamProvider ([#591](https://github.com/anton-rs/kona/pull/591)) +- *(derive)* Refactor out Online Providers ([#569](https://github.com/anton-rs/kona/pull/569)) +- *(derive)* interleaved channel tests ([#585](https://github.com/anton-rs/kona/pull/585)) +- *(derive)* Holocene Buffer Flushing ([#575](https://github.com/anton-rs/kona/pull/575)) +- *(derive)* Holocene Channel Bank Checks ([#572](https://github.com/anton-rs/kona/pull/572)) +- *(derive)* Holocene Frame Queue ([#579](https://github.com/anton-rs/kona/pull/579)) +- *(derive)* Holocene Activation ([#574](https://github.com/anton-rs/kona/pull/574)) +- *(derive)* wire up the batch span stage ([#567](https://github.com/anton-rs/kona/pull/567)) +- *(derive)* New BatchStream Stage for Holocene ([#566](https://github.com/anton-rs/kona/pull/566)) +- *(derive)* Hoist AttributesBuilder ([#571](https://github.com/anton-rs/kona/pull/571)) +- *(derive)* Touchup Docs ([#555](https://github.com/anton-rs/kona/pull/555)) +- *(derive)* Latest BN ([#521](https://github.com/anton-rs/kona/pull/521)) +- Remove L2 Execution Payload ([#542](https://github.com/anton-rs/kona/pull/542)) +- *(derive)* Typed error handling ([#540](https://github.com/anton-rs/kona/pull/540)) +- *(primitives)* Remove Attributes ([#529](https://github.com/anton-rs/kona/pull/529)) +- large dependency update ([#528](https://github.com/anton-rs/kona/pull/528)) +- *(primitives)* reuse op-alloy-protocol channel and block types ([#499](https://github.com/anton-rs/kona/pull/499)) + +### Fixed + +- *(executor)* Holocene EIP-1559 params in Header ([#622](https://github.com/anton-rs/kona/pull/622)) +- derive pipeline params ([#587](https://github.com/anton-rs/kona/pull/587)) +- *(workspace)* hoist and fix lints ([#577](https://github.com/anton-rs/kona/pull/577)) +- *(derive)* move attributes builder trait ([#570](https://github.com/anton-rs/kona/pull/570)) +- *(client)* Channel reader error handling ([#539](https://github.com/anton-rs/kona/pull/539)) +- *(derive)* Sequence window expiry ([#532](https://github.com/anton-rs/kona/pull/532)) +- *(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 + +- *(derive)* hoist attributes queue test utils ([#654](https://github.com/anton-rs/kona/pull/654)) +- *(derive)* Pipeline Core Test Coverage ([#642](https://github.com/anton-rs/kona/pull/642)) +- *(derive)* Single Batch Test Coverage ([#643](https://github.com/anton-rs/kona/pull/643)) +- *(derive)* Blob Source Test Coverage ([#631](https://github.com/anton-rs/kona/pull/631)) +- refactor test providers ([#623](https://github.com/anton-rs/kona/pull/623)) +- doc logos ([#609](https://github.com/anton-rs/kona/pull/609)) +- use alloy primitives map ([#586](https://github.com/anton-rs/kona/pull/586)) +- *(derive)* [Holocene] Drain previous channel in one iteration ([#583](https://github.com/anton-rs/kona/pull/583)) +- channel reader docs ([#568](https://github.com/anton-rs/kona/pull/568)) +- 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 diff --git a/crates/derive/Cargo.toml b/crates/derive/Cargo.toml index c4d714c41..fa081b3d6 100644 --- a/crates/derive/Cargo.toml +++ b/crates/derive/Cargo.toml @@ -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 diff --git a/crates/executor/CHANGELOG.md b/crates/executor/CHANGELOG.md index dcd97baf9..7c5015c25 100644 --- a/crates/executor/CHANGELOG.md +++ b/crates/executor/CHANGELOG.md @@ -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/anton-rs/kona/compare/kona-executor-v0.0.2...kona-executor-v0.0.3) - 2024-10-08 + +### Added + +- *(executor)* Update EIP-1559 configurability ([#648](https://github.com/anton-rs/kona/pull/648)) +- *(executor)* Use EIP-1559 parameters from payload attributes ([#616](https://github.com/anton-rs/kona/pull/616)) +- *(derive)* bump op-alloy dep ([#605](https://github.com/anton-rs/kona/pull/605)) +- kona-providers ([#596](https://github.com/anton-rs/kona/pull/596)) +- *(executor)* Migrate to `thiserror` ([#544](https://github.com/anton-rs/kona/pull/544)) +- *(mpt)* Migrate to `thiserror` ([#541](https://github.com/anton-rs/kona/pull/541)) +- *(primitives)* Remove Attributes ([#529](https://github.com/anton-rs/kona/pull/529)) +- large dependency update ([#528](https://github.com/anton-rs/kona/pull/528)) + +### Fixed + +- *(executor)* Holocene EIP-1559 params in Header ([#622](https://github.com/anton-rs/kona/pull/622)) +- *(workspace)* hoist and fix lints ([#577](https://github.com/anton-rs/kona/pull/577)) + +### Other + +- doc logos ([#609](https://github.com/anton-rs/kona/pull/609)) +- *(workspace)* Allow stdlib in `cfg(test)` ([#548](https://github.com/anton-rs/kona/pull/548)) +- 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 diff --git a/crates/executor/Cargo.toml b/crates/executor/Cargo.toml index eaadf5be1..48649d4d2 100644 --- a/crates/executor/Cargo.toml +++ b/crates/executor/Cargo.toml @@ -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 diff --git a/crates/mpt/CHANGELOG.md b/crates/mpt/CHANGELOG.md index eaed56842..4e58057af 100644 --- a/crates/mpt/CHANGELOG.md +++ b/crates/mpt/CHANGELOG.md @@ -6,6 +6,26 @@ 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-10-08 + +### Added + +- kona-providers ([#596](https://github.com/anton-rs/kona/pull/596)) +- *(ci)* Split online/offline tests ([#582](https://github.com/anton-rs/kona/pull/582)) +- *(mpt)* Migrate to `thiserror` ([#541](https://github.com/anton-rs/kona/pull/541)) + +### Fixed + +- *(workspace)* hoist and fix lints ([#577](https://github.com/anton-rs/kona/pull/577)) +- *(mpt)* Empty list walker ([#493](https://github.com/anton-rs/kona/pull/493)) + +### Other + +- *(mpt)* mpt noop trait impls ([#649](https://github.com/anton-rs/kona/pull/649)) +- *(mpt)* account conversion tests ([#647](https://github.com/anton-rs/kona/pull/647)) +- doc logos ([#609](https://github.com/anton-rs/kona/pull/609)) +- *(workspace)* Allow stdlib in `cfg(test)` ([#548](https://github.com/anton-rs/kona/pull/548)) + ## [0.0.3](https://github.com/anton-rs/kona/compare/kona-mpt-v0.0.2...kona-mpt-v0.0.3) - 2024-09-04 ### Added diff --git a/crates/mpt/Cargo.toml b/crates/mpt/Cargo.toml index ba11ca730..6b496a874 100644 --- a/crates/mpt/Cargo.toml +++ b/crates/mpt/Cargo.toml @@ -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 diff --git a/crates/preimage/CHANGELOG.md b/crates/preimage/CHANGELOG.md index 37eabecb8..e45477094 100644 --- a/crates/preimage/CHANGELOG.md +++ b/crates/preimage/CHANGELOG.md @@ -6,6 +6,24 @@ 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-preimage-v0.0.3...kona-preimage-v0.0.4) - 2024-10-08 + +### Added + +- *(preimage/common)* Migrate to `thiserror` ([#543](https://github.com/anton-rs/kona/pull/543)) + +### Fixed + +- *(workspace)* hoist and fix lints ([#577](https://github.com/anton-rs/kona/pull/577)) +- *(preimage)* Improve error differentiation in preimage servers ([#535](https://github.com/anton-rs/kona/pull/535)) + +### Other + +- *(preimage)* Test Coverage ([#634](https://github.com/anton-rs/kona/pull/634)) +- doc logos ([#609](https://github.com/anton-rs/kona/pull/609)) +- *(workspace)* Bump dependencies ([#550](https://github.com/anton-rs/kona/pull/550)) +- *(workspace)* Allow stdlib in `cfg(test)` ([#548](https://github.com/anton-rs/kona/pull/548)) + ## [0.0.3](https://github.com/anton-rs/kona/compare/kona-preimage-v0.0.2...kona-preimage-v0.0.3) - 2024-09-04 ### Added diff --git a/crates/preimage/Cargo.toml b/crates/preimage/Cargo.toml index 159d500e0..6fa95ec95 100644 --- a/crates/preimage/Cargo.toml +++ b/crates/preimage/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-preimage" description = "Bindings and types for interacting with the PreimageOracle ABI" -version = "0.0.3" +version = "0.0.4" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/primitives/CHANGELOG.md b/crates/primitives/CHANGELOG.md index 654086147..23df1f2c7 100644 --- a/crates/primitives/CHANGELOG.md +++ b/crates/primitives/CHANGELOG.md @@ -6,6 +6,30 @@ 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-10-08 + +### Added + +- *(primitives)* Blob Test Coverage ([#627](https://github.com/anton-rs/kona/pull/627)) +- Remove L2 Execution Payload ([#542](https://github.com/anton-rs/kona/pull/542)) +- *(derive)* Typed error handling ([#540](https://github.com/anton-rs/kona/pull/540)) +- *(primitives)* Remove Attributes ([#529](https://github.com/anton-rs/kona/pull/529)) +- large dependency update ([#528](https://github.com/anton-rs/kona/pull/528)) +- *(primitives)* reuse op-alloy-protocol channel and block types ([#499](https://github.com/anton-rs/kona/pull/499)) + +### Fixed + +- *(workspace)* hoist and fix lints ([#577](https://github.com/anton-rs/kona/pull/577)) +- *(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 + +- Add Test Coverage ([#625](https://github.com/anton-rs/kona/pull/625)) +- doc logos ([#609](https://github.com/anton-rs/kona/pull/609)) +- rm depo and import op::depo ([#518](https://github.com/anton-rs/kona/pull/518)) +- *(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 diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 6cb526a52..6e8e429e4 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -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 diff --git a/crates/providers-alloy/CHANGELOG.md b/crates/providers-alloy/CHANGELOG.md new file mode 100644 index 000000000..3cc524719 --- /dev/null +++ b/crates/providers-alloy/CHANGELOG.md @@ -0,0 +1,28 @@ +# 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/releases/tag/kona-providers-alloy-v0.0.1) - 2024-10-08 + +### Added + +- *(derive)* bump op-alloy dep ([#605](https://github.com/anton-rs/kona/pull/605)) +- kona-providers ([#596](https://github.com/anton-rs/kona/pull/596)) +- *(derive)* Span batch prefix checks ([#592](https://github.com/anton-rs/kona/pull/592)) +- *(derive)* Refactor out Online Providers ([#569](https://github.com/anton-rs/kona/pull/569)) + +### Fixed + +- *(providers)* remove slot derivation ([#636](https://github.com/anton-rs/kona/pull/636)) + +### Other + +- *(providers-alloy)* blob provider fallback tests ([#644](https://github.com/anton-rs/kona/pull/644)) +- *(providers)* Codecov Ignore Alloy-backed Providers ([#633](https://github.com/anton-rs/kona/pull/633)) +- refactor test providers ([#623](https://github.com/anton-rs/kona/pull/623)) +- doc logos ([#609](https://github.com/anton-rs/kona/pull/609)) diff --git a/crates/providers/CHANGELOG.md b/crates/providers/CHANGELOG.md index d6637e049..3f3c7c70d 100644 --- a/crates/providers/CHANGELOG.md +++ b/crates/providers/CHANGELOG.md @@ -1,4 +1,20 @@ # 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.2](https://github.com/anton-rs/kona/compare/kona-providers-v0.0.1...kona-providers-v0.0.2) - 2024-10-08 + +### Other + +- *(providers)* Add changelog ([#653](https://github.com/anton-rs/kona/pull/653)) +- refactor test providers ([#623](https://github.com/anton-rs/kona/pull/623)) +- doc logos ([#609](https://github.com/anton-rs/kona/pull/609)) +# 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/), diff --git a/crates/providers/Cargo.toml b/crates/providers/Cargo.toml index 1321c74e3..16382b81c 100644 --- a/crates/providers/Cargo.toml +++ b/crates/providers/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-providers" description = "Provider traits for Kona" -version = "0.0.1" +version = "0.0.2" edition.workspace = true authors.workspace = true license.workspace = true