diff --git a/CHANGELOG.md b/CHANGELOG.md index cfca13c90..75bcaba55 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,27 @@ 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.5.1](https://github.com/alloy-rs/op-alloy +/releases/tag/v0.5.1) - 2024-10-24 + +### Dependencies + +- Bump alloy ([#178](https://github.com/alloy-rs/op-alloy/issues/178)) + +### Features + +- [rpc-types] `{Try}From` impl for `OpTransactionReceipt` + `Transaction` -> consensus types ([#183](https://github.com/alloy-rs/op-alloy/issues/183)) +- [genesis] EIP 1559 System Config Accessor ([#179](https://github.com/alloy-rs/op-alloy/issues/179)) + +### Miscellaneous Tasks + +- [consensus] Small Cleanup ([#180](https://github.com/alloy-rs/op-alloy/issues/180)) +- Dependency Updates ([#177](https://github.com/alloy-rs/op-alloy/issues/177)) + +### Other + +- Add arbitrary attr ([#182](https://github.com/alloy-rs/op-alloy/issues/182)) + ## [0.5.0](https://github.com/alloy-rs/op-alloy /releases/tag/v0.5.0) - 2024-10-18 @@ -20,6 +41,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [rollup] Backward-activate forks in `RollupConfig` ([#170](https://github.com/alloy-rs/op-alloy/issues/170)) - [envelope] Add missing `From>` ([#168](https://github.com/alloy-rs/op-alloy/issues/168)) +### Miscellaneous Tasks + +- Release 0.5.0 + ## [0.4.0](https://github.com/alloy-rs/op-alloy /releases/tag/v0.4.0) - 2024-10-09 diff --git a/Cargo.toml b/Cargo.toml index e4beade70..e7683e61f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.5.0" +version = "0.5.1" edition = "2021" rust-version = "1.81" authors = ["Alloy Contributors"] @@ -36,12 +36,12 @@ rustdoc-args = ["--cfg", "docsrs"] [workspace.dependencies] # Workspace -op-alloy-genesis = { version = "0.5.0", path = "crates/genesis", default-features = false } -op-alloy-protocol = { version = "0.5.0", path = "crates/protocol", default-features = false } -op-alloy-consensus = { version = "0.5.0", path = "crates/consensus", default-features = false } -op-alloy-rpc-types = { version = "0.5.0", path = "crates/rpc-types", default-features = false } -op-alloy-rpc-jsonrpsee = { version = "0.5.0", path = "crates/rpc-jsonrpsee", default-features = false } -op-alloy-rpc-types-engine = { version = "0.5.0", path = "crates/rpc-types-engine", default-features = false } +op-alloy-genesis = { version = "0.5.1", path = "crates/genesis", default-features = false } +op-alloy-protocol = { version = "0.5.1", path = "crates/protocol", default-features = false } +op-alloy-consensus = { version = "0.5.1", path = "crates/consensus", default-features = false } +op-alloy-rpc-types = { version = "0.5.1", path = "crates/rpc-types", default-features = false } +op-alloy-rpc-jsonrpsee = { version = "0.5.1", path = "crates/rpc-jsonrpsee", default-features = false } +op-alloy-rpc-types-engine = { version = "0.5.1", path = "crates/rpc-types-engine", default-features = false } # Alloy alloy-eips = { version = "0.5.4", default-features = false }