From a512ca1a0b092935df084fb6bb044eeb9d7e3c1a Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Wed, 3 Apr 2024 15:47:53 +0000 Subject: [PATCH] chore: release Signed-off-by: GitHub Action --- Cargo.lock | 6 ++--- crates/common/CHANGELOG.md | 13 ++++++++++ crates/common/Cargo.toml | 2 +- crates/derive/CHANGELOG.md | 48 ++++++++++++++++++++++++++++++++++++ crates/derive/Cargo.toml | 2 +- crates/preimage/CHANGELOG.md | 12 +++++++++ crates/preimage/Cargo.toml | 4 +-- 7 files changed, 80 insertions(+), 7 deletions(-) create mode 100644 crates/common/CHANGELOG.md create mode 100644 crates/derive/CHANGELOG.md create mode 100644 crates/preimage/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index 22304b806..72d0f1899 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -342,7 +342,7 @@ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" [[package]] name = "kona-common" -version = "0.0.1" +version = "0.0.2" dependencies = [ "anyhow", "cfg-if", @@ -351,7 +351,7 @@ dependencies = [ [[package]] name = "kona-derive" -version = "0.0.1" +version = "0.0.2" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -368,7 +368,7 @@ dependencies = [ [[package]] name = "kona-preimage" -version = "0.0.1" +version = "0.0.2" dependencies = [ "anyhow", "cfg-if", diff --git a/crates/common/CHANGELOG.md b/crates/common/CHANGELOG.md new file mode 100644 index 000000000..340b29395 --- /dev/null +++ b/crates/common/CHANGELOG.md @@ -0,0 +1,13 @@ +# 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/ethereum-optimism/kona/compare/kona-common-v0.0.1...kona-common-v0.0.2) - 2024-04-03 + +### Other +- Add simple blocking async executor ([#38](https://github.com/ethereum-optimism/kona/pull/38)) +- Make versions of packages independent ([#36](https://github.com/ethereum-optimism/kona/pull/36)) diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml index e8f9ebb98..892028d47 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.1" +version = "0.0.2" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/derive/CHANGELOG.md b/crates/derive/CHANGELOG.md new file mode 100644 index 000000000..ad8fc5f00 --- /dev/null +++ b/crates/derive/CHANGELOG.md @@ -0,0 +1,48 @@ +# 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/ethereum-optimism/kona/compare/kona-derive-v0.0.1...kona-derive-v0.0.2) - 2024-04-03 + +### Added +- *(derive)* `SpanBatch` type implementation WIP +- *(derive)* Reorganize modules +- *(derive)* `add_txs` function +- *(derive)* Derive raw batches, mocks +- *(derive)* Refactor serialization; `SpanBatchPayload` WIP +- *(derive)* fixed bytes and encoding +- *(derive)* raw span type refactoring +- *(types)* span batches +- *(derive)* Channel Reader Implementation ([#65](https://github.com/ethereum-optimism/kona/pull/65)) +- *(derive)* share the rollup config across stages using an arc +- *(derive)* Test Utilities ([#62](https://github.com/ethereum-optimism/kona/pull/62)) +- Single batch type ([#43](https://github.com/ethereum-optimism/kona/pull/43)) +- *(derive)* channel bank ([#46](https://github.com/ethereum-optimism/kona/pull/46)) +- Frame queue stage ([#45](https://github.com/ethereum-optimism/kona/pull/45)) +- L1 retrieval ([#44](https://github.com/ethereum-optimism/kona/pull/44)) +- System config update event parsing ([#42](https://github.com/ethereum-optimism/kona/pull/42)) +- Add OP receipt fields ([#41](https://github.com/ethereum-optimism/kona/pull/41)) +- Add `TxDeposit` type ([#40](https://github.com/ethereum-optimism/kona/pull/40)) +- L1 traversal ([#39](https://github.com/ethereum-optimism/kona/pull/39)) + +### Fixed +- *(derive)* refactor tx enveloped +- *(derive)* refactor span batch tx types +- *(derive)* bitlist alignment +- *(derive)* span batch tx rlp +- *(derive)* span type encodings and decodings +- *(derive)* more types +- *(derive)* small l1 retrieval doc comment fix ([#61](https://github.com/ethereum-optimism/kona/pull/61)) + +### Other +- *(derive)* Channel reader tests + fixes, batch type fixes +- *(derive)* `RawSpanBatch` diff decoding/encoding test +- *(derive)* rebase + move `alloy` module +- *(derive)* Clean up RLP encoding + use `TxType` rather than ints +- Update `derive` lint rules ([#47](https://github.com/ethereum-optimism/kona/pull/47)) +- scaffold ([#37](https://github.com/ethereum-optimism/kona/pull/37)) +- Make versions of packages independent ([#36](https://github.com/ethereum-optimism/kona/pull/36)) diff --git a/crates/derive/Cargo.toml b/crates/derive/Cargo.toml index 5adf8b0cd..fca816711 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.1" +version = "0.0.2" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/preimage/CHANGELOG.md b/crates/preimage/CHANGELOG.md new file mode 100644 index 000000000..61e9daee3 --- /dev/null +++ b/crates/preimage/CHANGELOG.md @@ -0,0 +1,12 @@ +# 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/ethereum-optimism/kona/compare/kona-preimage-v0.0.1...kona-preimage-v0.0.2) - 2024-04-03 + +### Other +- Make versions of packages independent ([#36](https://github.com/ethereum-optimism/kona/pull/36)) diff --git a/crates/preimage/Cargo.toml b/crates/preimage/Cargo.toml index 84d6edb62..7fd34101b 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.1" +version = "0.0.2" edition.workspace = true authors.workspace = true license.workspace = true @@ -14,7 +14,7 @@ anyhow.workspace = true cfg-if.workspace = true # local -kona-common = { path = "../common", version = "0.0.1" } +kona-common = { path = "../common", version = "0.0.2" } [dev-dependencies] tokio = { version = "1.36.0", features = ["full"] }