diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b0ef3f52..604a277fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,25 @@ 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.1](https://github.com/alloy-rs/op-alloy +/releases/tag/v0.6.1) - 2024-11-06 + +### Bug Fixes + +- [protocol] Batch Decoding ([#235](https://github.com/alloy-rs/op-alloy/issues/235)) +- [book] Links Imports ([#227](https://github.com/alloy-rs/op-alloy/issues/227)) + +### Features + +- [book] Engine RPC Types ([#229](https://github.com/alloy-rs/op-alloy/issues/229)) + +### Miscellaneous Tasks + +- [rpc-types] Clean up Exports ([#231](https://github.com/alloy-rs/op-alloy/issues/231)) +- [book] Consolidate Links ([#230](https://github.com/alloy-rs/op-alloy/issues/230)) +- [book] RPC Types ([#228](https://github.com/alloy-rs/op-alloy/issues/228)) +- [book] Protocol Docs ([#225](https://github.com/alloy-rs/op-alloy/issues/225)) + ## [0.6.0](https://github.com/alloy-rs/op-alloy /releases/tag/v0.6.0) - 2024-11-06 @@ -51,6 +70,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.6.0 - [book] Load Rollup Config Example ([#224](https://github.com/alloy-rs/op-alloy/issues/224)) - [book] Genesis Docs ([#223](https://github.com/alloy-rs/op-alloy/issues/223)) - [book] Consensus Docs ([#222](https://github.com/alloy-rs/op-alloy/issues/222)) diff --git a/Cargo.toml b/Cargo.toml index 42cdf9856..dcb7fb554 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.6.0" +version = "0.6.1" edition = "2021" rust-version = "1.81" authors = ["Alloy Contributors"] @@ -36,14 +36,14 @@ rustdoc-args = ["--cfg", "docsrs"] [workspace.dependencies] # Workspace -op-alloy-genesis = { version = "0.6.0", path = "crates/genesis", default-features = false } -op-alloy-protocol = { version = "0.6.0", path = "crates/protocol", default-features = false } -op-alloy-consensus = { version = "0.6.0", path = "crates/consensus", default-features = false } -op-alloy-network = { version = "0.6.0", path = "crates/network", default-features = false } -op-alloy-provider = { version = "0.6.0", path = "crates/provider", default-features = false } -op-alloy-rpc-types = { version = "0.6.0", path = "crates/rpc-types", default-features = false } -op-alloy-rpc-jsonrpsee = { version = "0.6.0", path = "crates/rpc-jsonrpsee", default-features = false } -op-alloy-rpc-types-engine = { version = "0.6.0", path = "crates/rpc-types-engine", default-features = false } +op-alloy-genesis = { version = "0.6.1", path = "crates/genesis", default-features = false } +op-alloy-protocol = { version = "0.6.1", path = "crates/protocol", default-features = false } +op-alloy-consensus = { version = "0.6.1", path = "crates/consensus", default-features = false } +op-alloy-network = { version = "0.6.1", path = "crates/network", default-features = false } +op-alloy-provider = { version = "0.6.1", path = "crates/provider", default-features = false } +op-alloy-rpc-types = { version = "0.6.1", path = "crates/rpc-types", default-features = false } +op-alloy-rpc-jsonrpsee = { version = "0.6.1", path = "crates/rpc-jsonrpsee", default-features = false } +op-alloy-rpc-types-engine = { version = "0.6.1", path = "crates/rpc-types-engine", default-features = false } # Alloy alloy-eips = { version = "0.6.0", default-features = false }