diff --git a/Cargo.lock b/Cargo.lock index 56ee426f4..aa87731d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -310,7 +310,7 @@ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" [[package]] name = "kona-common" -version = "0.0.1" +version = "0.0.2" dependencies = [ "anyhow", "cfg-if", @@ -319,7 +319,7 @@ dependencies = [ [[package]] name = "kona-derive" -version = "0.0.1" +version = "0.0.2" dependencies = [ "alloy-primitives", "alloy-rlp", @@ -334,7 +334,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..77e439593 --- /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-01 + +### 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..79c4cc40c --- /dev/null +++ b/crates/derive/CHANGELOG.md @@ -0,0 +1,29 @@ +# 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-01 + +### Added +- *(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)* small l1 retrieval doc comment fix ([#61](https://github.com/ethereum-optimism/kona/pull/61)) + +### Other +- 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 38e640b31..30646c07f 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..980d01137 --- /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-01 + +### 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"] }