From 86b46b93c9911f0baf4d6f3f697f28b3bb3609c9 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Mon, 30 Dec 2024 23:14:02 +0100 Subject: [PATCH] chore: release 0.9.1 --- CHANGELOG.md | 13 ++++++++ Cargo.toml | 2 +- crates/alloy/CHANGELOG.md | 6 ++++ crates/consensus-any/CHANGELOG.md | 17 ++++++++++ crates/consensus/CHANGELOG.md | 43 ++++++++++++++++++++++++++ crates/contract/CHANGELOG.md | 6 ++++ crates/eip5792/CHANGELOG.md | 6 ++++ crates/eip7547/CHANGELOG.md | 6 ++++ crates/eips/CHANGELOG.md | 31 +++++++++++++++++++ crates/genesis/CHANGELOG.md | 4 +++ crates/json-rpc/CHANGELOG.md | 12 +++++++ crates/network-primitives/CHANGELOG.md | 17 ++++++++++ crates/network/CHANGELOG.md | 4 +++ crates/node-bindings/CHANGELOG.md | 6 ++++ crates/provider/CHANGELOG.md | 4 +++ crates/pubsub/CHANGELOG.md | 6 ++++ crates/rpc-client/CHANGELOG.md | 6 ++++ crates/rpc-types-admin/CHANGELOG.md | 6 ++++ crates/rpc-types-anvil/CHANGELOG.md | 6 ++++ crates/rpc-types-any/CHANGELOG.md | 6 ++++ crates/rpc-types-beacon/CHANGELOG.md | 4 +++ crates/rpc-types-debug/CHANGELOG.md | 6 ++++ crates/rpc-types-engine/CHANGELOG.md | 4 +++ crates/rpc-types-eth/CHANGELOG.md | 31 +++++++++++++++++++ crates/rpc-types-mev/CHANGELOG.md | 6 ++++ crates/rpc-types-trace/CHANGELOG.md | 4 +++ crates/rpc-types-txpool/CHANGELOG.md | 10 ++++++ crates/rpc-types/CHANGELOG.md | 6 ++++ crates/serde/CHANGELOG.md | 12 +++++++ crates/signer-aws/CHANGELOG.md | 6 ++++ crates/signer-gcp/CHANGELOG.md | 6 ++++ crates/signer-ledger/CHANGELOG.md | 6 ++++ crates/signer-local/CHANGELOG.md | 6 ++++ crates/signer-trezor/CHANGELOG.md | 6 ++++ crates/signer/CHANGELOG.md | 12 +++++++ crates/transport-http/CHANGELOG.md | 1 + crates/transport-ipc/CHANGELOG.md | 6 ++++ crates/transport-ws/CHANGELOG.md | 6 ++++ crates/transport/CHANGELOG.md | 6 ++++ 39 files changed, 350 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5decc1b9786..4739ad2a37d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ 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.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 + +### Features + +- Add deref for block ([#1868](https://github.com/alloy-rs/alloy/issues/1868)) +- Add helper for txpool inspect summary ([#1866](https://github.com/alloy-rs/alloy/issues/1866)) + +### Miscellaneous Tasks + +- Add arbitrary for blockbody ([#1867](https://github.com/alloy-rs/alloy/issues/1867)) +- Add history serve window ([#1865](https://github.com/alloy-rs/alloy/issues/1865)) + ## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 ### Bug Fixes @@ -43,6 +55,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.9.0 - Rm unused alloy-signer dep ([#1862](https://github.com/alloy-rs/alloy/issues/1862)) - Simplify Service impls ([#1861](https://github.com/alloy-rs/alloy/issues/1861)) - Make clippy happy ([#1849](https://github.com/alloy-rs/alloy/issues/1849)) diff --git a/Cargo.toml b/Cargo.toml index 3facfa22491..8045d549f1a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.9.0" +version = "0.9.1" edition = "2021" rust-version = "1.81" authors = ["Alloy Contributors"] diff --git a/crates/alloy/CHANGELOG.md b/crates/alloy/CHANGELOG.md index b21dd1470ec..650ecf392f1 100644 --- a/crates/alloy/CHANGELOG.md +++ b/crates/alloy/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/consensus-any/CHANGELOG.md b/crates/consensus-any/CHANGELOG.md index d72875e19bb..3e26de5f168 100644 --- a/crates/consensus-any/CHANGELOG.md +++ b/crates/consensus-any/CHANGELOG.md @@ -5,6 +5,23 @@ 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.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 + +### Bug Fixes + +- Use u64 for all gas values ([#1848](https://github.com/alloy-rs/alloy/issues/1848)) + +### Features + +- [pectra] Revert EIP-7742 ([#1807](https://github.com/alloy-rs/alloy/issues/1807)) +- Add tryfrom for anyheader to header ([#1826](https://github.com/alloy-rs/alloy/issues/1826)) + +## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 + +### Miscellaneous Tasks + +- Release 0.8.3 + ## [0.8.2](https://github.com/alloy-rs/alloy/releases/tag/v0.8.2) - 2024-12-19 ### Miscellaneous Tasks diff --git a/crates/consensus/CHANGELOG.md b/crates/consensus/CHANGELOG.md index 41fcc02406f..3a13d7da5a7 100644 --- a/crates/consensus/CHANGELOG.md +++ b/crates/consensus/CHANGELOG.md @@ -5,12 +5,55 @@ 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.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 + +### Features + +- Add deref for block ([#1868](https://github.com/alloy-rs/alloy/issues/1868)) + +### Miscellaneous Tasks + +- Add arbitrary for blockbody ([#1867](https://github.com/alloy-rs/alloy/issues/1867)) + +## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Bug Fixes + +- Use u64 for all gas values ([#1848](https://github.com/alloy-rs/alloy/issues/1848)) + +### Features + +- Add tryfrom payloadv1 for block ([#1851](https://github.com/alloy-rs/alloy/issues/1851)) +- Add match functions ([#1847](https://github.com/alloy-rs/alloy/issues/1847)) +- Add BlockConditional ([#1846](https://github.com/alloy-rs/alloy/issues/1846)) +- EIP-7840 ([#1828](https://github.com/alloy-rs/alloy/issues/1828)) +- Return tagged variant deserde error ([#1810](https://github.com/alloy-rs/alloy/issues/1810)) +- [pectra] Revert EIP-7742 ([#1807](https://github.com/alloy-rs/alloy/issues/1807)) +- Add map transactions fn ([#1827](https://github.com/alloy-rs/alloy/issues/1827)) +- Add helpers for block ([#1816](https://github.com/alloy-rs/alloy/issues/1816)) +- Add helpers to any tx envelope ([#1817](https://github.com/alloy-rs/alloy/issues/1817)) + +### Miscellaneous Tasks + +- Rm unused alloy-signer dep ([#1862](https://github.com/alloy-rs/alloy/issues/1862)) +- Rm non exhaustive from ReceiptEnvelope ([#1843](https://github.com/alloy-rs/alloy/issues/1843)) +- Rm non exhaustive for envelope ([#1842](https://github.com/alloy-rs/alloy/issues/1842)) +- Map header fns ([#1840](https://github.com/alloy-rs/alloy/issues/1840)) + +### Other + +- Change `chain_id` type to `U256` ([#1839](https://github.com/alloy-rs/alloy/issues/1839)) + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Features - Add serde for block ([#1814](https://github.com/alloy-rs/alloy/issues/1814)) +### Miscellaneous Tasks + +- Release 0.8.3 + ## [0.8.2](https://github.com/alloy-rs/alloy/releases/tag/v0.8.2) - 2024-12-19 ### Bug Fixes diff --git a/crates/contract/CHANGELOG.md b/crates/contract/CHANGELOG.md index b7147231797..2b37c07c7a7 100644 --- a/crates/contract/CHANGELOG.md +++ b/crates/contract/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/eip5792/CHANGELOG.md b/crates/eip5792/CHANGELOG.md index 8abea3f4ad0..c7caf24f51f 100644 --- a/crates/eip5792/CHANGELOG.md +++ b/crates/eip5792/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/eip7547/CHANGELOG.md b/crates/eip7547/CHANGELOG.md index 759306f3064..1f17182dad2 100644 --- a/crates/eip7547/CHANGELOG.md +++ b/crates/eip7547/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/eips/CHANGELOG.md b/crates/eips/CHANGELOG.md index 5b4f0946d83..e94a8b9e842 100644 --- a/crates/eips/CHANGELOG.md +++ b/crates/eips/CHANGELOG.md @@ -5,6 +5,37 @@ 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.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 + +### Miscellaneous Tasks + +- Add history serve window ([#1865](https://github.com/alloy-rs/alloy/issues/1865)) + +## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Bug Fixes + +- [alloy-eips] `SimpleCoder::decode_one()` should return `Ok(None)` ([#1818](https://github.com/alloy-rs/alloy/issues/1818)) + +### Features + +- EIP-7840 ([#1828](https://github.com/alloy-rs/alloy/issues/1828)) +- [pectra] Revert EIP-7742 ([#1807](https://github.com/alloy-rs/alloy/issues/1807)) + +### Other + +- [Feature] update Display implementation on BlockNumberOrTag ([#1857](https://github.com/alloy-rs/alloy/issues/1857)) +- [Bug] Request predeploy codes have diverged ([#1845](https://github.com/alloy-rs/alloy/issues/1845)) +- Update contract bytecode & address ([#1838](https://github.com/alloy-rs/alloy/issues/1838)) +- Update `CONSOLIDATION_REQUEST_PREDEPLOY_ADDRESS` ([#1836](https://github.com/alloy-rs/alloy/issues/1836)) +- Update `WITHDRAWAL_REQUEST_PREDEPLOY_ADDRESS` ([#1834](https://github.com/alloy-rs/alloy/issues/1834)) + +## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 + +### Miscellaneous Tasks + +- Release 0.8.3 + ## [0.8.2](https://github.com/alloy-rs/alloy/releases/tag/v0.8.2) - 2024-12-19 ### Miscellaneous Tasks diff --git a/crates/genesis/CHANGELOG.md b/crates/genesis/CHANGELOG.md index 60d4650512a..99d3417b93d 100644 --- a/crates/genesis/CHANGELOG.md +++ b/crates/genesis/CHANGELOG.md @@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - EIP-7840 ([#1828](https://github.com/alloy-rs/alloy/issues/1828)) +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/json-rpc/CHANGELOG.md b/crates/json-rpc/CHANGELOG.md index 1e1669b73ed..88ed55ad41e 100644 --- a/crates/json-rpc/CHANGELOG.md +++ b/crates/json-rpc/CHANGELOG.md @@ -5,6 +5,18 @@ 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.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 + +### Miscellaneous Tasks + +- Simplify Service impls ([#1861](https://github.com/alloy-rs/alloy/issues/1861)) + +## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 + +### Miscellaneous Tasks + +- Release 0.8.3 + ## [0.8.2](https://github.com/alloy-rs/alloy/releases/tag/v0.8.2) - 2024-12-19 ### Miscellaneous Tasks diff --git a/crates/network-primitives/CHANGELOG.md b/crates/network-primitives/CHANGELOG.md index cfd0bb8b22d..19eeee7a359 100644 --- a/crates/network-primitives/CHANGELOG.md +++ b/crates/network-primitives/CHANGELOG.md @@ -5,6 +5,23 @@ 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.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 + +### Bug Fixes + +- Use u64 for all gas values ([#1848](https://github.com/alloy-rs/alloy/issues/1848)) + +### Features + +- Add more builder style fns ([#1850](https://github.com/alloy-rs/alloy/issues/1850)) +- Add map transactions to rpc block type ([#1835](https://github.com/alloy-rs/alloy/issues/1835)) + +## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 + +### Miscellaneous Tasks + +- Release 0.8.3 + ## [0.8.2](https://github.com/alloy-rs/alloy/releases/tag/v0.8.2) - 2024-12-19 ### Miscellaneous Tasks diff --git a/crates/network/CHANGELOG.md b/crates/network/CHANGELOG.md index a5ea5a3e484..19b56ea100d 100644 --- a/crates/network/CHANGELOG.md +++ b/crates/network/CHANGELOG.md @@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add helpers to any tx envelope ([#1817](https://github.com/alloy-rs/alloy/issues/1817)) +### Miscellaneous Tasks + +- Release 0.9.0 + ### Other - Change `chain_id` type to `U256` ([#1839](https://github.com/alloy-rs/alloy/issues/1839)) diff --git a/crates/node-bindings/CHANGELOG.md b/crates/node-bindings/CHANGELOG.md index d21d3b9af94..17e31238379 100644 --- a/crates/node-bindings/CHANGELOG.md +++ b/crates/node-bindings/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/provider/CHANGELOG.md b/crates/provider/CHANGELOG.md index 691119978e8..b214e0c244a 100644 --- a/crates/provider/CHANGELOG.md +++ b/crates/provider/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Use u64 for all gas values ([#1848](https://github.com/alloy-rs/alloy/issues/1848)) +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/pubsub/CHANGELOG.md b/crates/pubsub/CHANGELOG.md index 887f445c6d6..7d7e0cfa0e3 100644 --- a/crates/pubsub/CHANGELOG.md +++ b/crates/pubsub/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/rpc-client/CHANGELOG.md b/crates/rpc-client/CHANGELOG.md index 048ac417195..4c4d424697c 100644 --- a/crates/rpc-client/CHANGELOG.md +++ b/crates/rpc-client/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/rpc-types-admin/CHANGELOG.md b/crates/rpc-types-admin/CHANGELOG.md index c92a8bb1632..c737bdaaf30 100644 --- a/crates/rpc-types-admin/CHANGELOG.md +++ b/crates/rpc-types-admin/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/rpc-types-anvil/CHANGELOG.md b/crates/rpc-types-anvil/CHANGELOG.md index 688e32edf29..23dc14dda56 100644 --- a/crates/rpc-types-anvil/CHANGELOG.md +++ b/crates/rpc-types-anvil/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/rpc-types-any/CHANGELOG.md b/crates/rpc-types-any/CHANGELOG.md index 0b4cf25f1f7..4568505a53d 100644 --- a/crates/rpc-types-any/CHANGELOG.md +++ b/crates/rpc-types-any/CHANGELOG.md @@ -5,6 +5,12 @@ 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.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 + +### Miscellaneous Tasks + +- Release 0.8.3 + ## [0.8.2](https://github.com/alloy-rs/alloy/releases/tag/v0.8.2) - 2024-12-19 ### Miscellaneous Tasks diff --git a/crates/rpc-types-beacon/CHANGELOG.md b/crates/rpc-types-beacon/CHANGELOG.md index 43872205e30..0f54e51f566 100644 --- a/crates/rpc-types-beacon/CHANGELOG.md +++ b/crates/rpc-types-beacon/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [pectra] Revert EIP-7742 ([#1807](https://github.com/alloy-rs/alloy/issues/1807)) +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/rpc-types-debug/CHANGELOG.md b/crates/rpc-types-debug/CHANGELOG.md index a1dba8d59b3..422b7ff3223 100644 --- a/crates/rpc-types-debug/CHANGELOG.md +++ b/crates/rpc-types-debug/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/rpc-types-engine/CHANGELOG.md b/crates/rpc-types-engine/CHANGELOG.md index 192e0f0f9f9..abfa6dfd4f7 100644 --- a/crates/rpc-types-engine/CHANGELOG.md +++ b/crates/rpc-types-engine/CHANGELOG.md @@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add tryfrom payloadv1 for block ([#1851](https://github.com/alloy-rs/alloy/issues/1851)) - [pectra] Revert EIP-7742 ([#1807](https://github.com/alloy-rs/alloy/issues/1807)) +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/rpc-types-eth/CHANGELOG.md b/crates/rpc-types-eth/CHANGELOG.md index e9fb5ce606a..5e51fa84b2b 100644 --- a/crates/rpc-types-eth/CHANGELOG.md +++ b/crates/rpc-types-eth/CHANGELOG.md @@ -5,6 +5,37 @@ 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.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 + +### Bug Fixes + +- Use u64 for all gas values ([#1848](https://github.com/alloy-rs/alloy/issues/1848)) +- Support hex values for conditional options ([#1824](https://github.com/alloy-rs/alloy/issues/1824)) + +### Features + +- Add more builder style fns ([#1850](https://github.com/alloy-rs/alloy/issues/1850)) +- Add match functions ([#1847](https://github.com/alloy-rs/alloy/issues/1847)) +- EIP-7840 ([#1828](https://github.com/alloy-rs/alloy/issues/1828)) +- Add map transactions to rpc block type ([#1835](https://github.com/alloy-rs/alloy/issues/1835)) +- [pectra] Revert EIP-7742 ([#1807](https://github.com/alloy-rs/alloy/issues/1807)) +- Add cost fn for conditional opts ([#1823](https://github.com/alloy-rs/alloy/issues/1823)) + +### Miscellaneous Tasks + +- Make clippy happy ([#1849](https://github.com/alloy-rs/alloy/issues/1849)) +- Rm non exhaustive from ReceiptEnvelope ([#1843](https://github.com/alloy-rs/alloy/issues/1843)) +- Rm non exhaustive for envelope ([#1842](https://github.com/alloy-rs/alloy/issues/1842)) +- Map header fns ([#1840](https://github.com/alloy-rs/alloy/issues/1840)) +- Rename ConditionalOptions ([#1825](https://github.com/alloy-rs/alloy/issues/1825)) +- Replace derive_more with thiserror ([#1822](https://github.com/alloy-rs/alloy/issues/1822)) + +## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 + +### Miscellaneous Tasks + +- Release 0.8.3 + ## [0.8.2](https://github.com/alloy-rs/alloy/releases/tag/v0.8.2) - 2024-12-19 ### Bug Fixes diff --git a/crates/rpc-types-mev/CHANGELOG.md b/crates/rpc-types-mev/CHANGELOG.md index 9e9764d533d..5fa71063d96 100644 --- a/crates/rpc-types-mev/CHANGELOG.md +++ b/crates/rpc-types-mev/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/rpc-types-trace/CHANGELOG.md b/crates/rpc-types-trace/CHANGELOG.md index 34d84fb0f2f..4afbf7b4ab5 100644 --- a/crates/rpc-types-trace/CHANGELOG.md +++ b/crates/rpc-types-trace/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Use default for creation method ([#1820](https://github.com/alloy-rs/alloy/issues/1820)) +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/rpc-types-txpool/CHANGELOG.md b/crates/rpc-types-txpool/CHANGELOG.md index 6b01deb937c..d88812436b3 100644 --- a/crates/rpc-types-txpool/CHANGELOG.md +++ b/crates/rpc-types-txpool/CHANGELOG.md @@ -5,12 +5,22 @@ 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.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 + +### Features + +- Add helper for txpool inspect summary ([#1866](https://github.com/alloy-rs/alloy/issues/1866)) + ## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 ### Bug Fixes - Use u64 for all gas values ([#1848](https://github.com/alloy-rs/alloy/issues/1848)) +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/rpc-types/CHANGELOG.md b/crates/rpc-types/CHANGELOG.md index 4d172e2144a..3fd4dd4302e 100644 --- a/crates/rpc-types/CHANGELOG.md +++ b/crates/rpc-types/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/serde/CHANGELOG.md b/crates/serde/CHANGELOG.md index 5173424e8e8..ca10999d3e9 100644 --- a/crates/serde/CHANGELOG.md +++ b/crates/serde/CHANGELOG.md @@ -5,6 +5,18 @@ 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.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 + +### Features + +- Add insert helper to otherfields ([#1841](https://github.com/alloy-rs/alloy/issues/1841)) + +## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 + +### Miscellaneous Tasks + +- Release 0.8.3 + ## [0.8.2](https://github.com/alloy-rs/alloy/releases/tag/v0.8.2) - 2024-12-19 ### Miscellaneous Tasks diff --git a/crates/signer-aws/CHANGELOG.md b/crates/signer-aws/CHANGELOG.md index 995d3889e65..4a30e39df56 100644 --- a/crates/signer-aws/CHANGELOG.md +++ b/crates/signer-aws/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/signer-gcp/CHANGELOG.md b/crates/signer-gcp/CHANGELOG.md index b81d721aebd..25909683578 100644 --- a/crates/signer-gcp/CHANGELOG.md +++ b/crates/signer-gcp/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/signer-ledger/CHANGELOG.md b/crates/signer-ledger/CHANGELOG.md index 420765ea09c..56b9bcb1f09 100644 --- a/crates/signer-ledger/CHANGELOG.md +++ b/crates/signer-ledger/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/signer-local/CHANGELOG.md b/crates/signer-local/CHANGELOG.md index ea2ff5f84f0..e7378ff060c 100644 --- a/crates/signer-local/CHANGELOG.md +++ b/crates/signer-local/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/signer-trezor/CHANGELOG.md b/crates/signer-trezor/CHANGELOG.md index 40dfdb7071d..a91aa004db3 100644 --- a/crates/signer-trezor/CHANGELOG.md +++ b/crates/signer-trezor/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/signer/CHANGELOG.md b/crates/signer/CHANGELOG.md index d987b7639ab..4ae3819503c 100644 --- a/crates/signer/CHANGELOG.md +++ b/crates/signer/CHANGELOG.md @@ -5,6 +5,18 @@ 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.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 + +### Dependencies + +- Rm cyclic test deps ([#1863](https://github.com/alloy-rs/alloy/issues/1863)) + +## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 + +### Miscellaneous Tasks + +- Release 0.8.3 + ## [0.8.2](https://github.com/alloy-rs/alloy/releases/tag/v0.8.2) - 2024-12-19 ### Miscellaneous Tasks diff --git a/crates/transport-http/CHANGELOG.md b/crates/transport-http/CHANGELOG.md index 0c1e1d72a49..304926c9df8 100644 --- a/crates/transport-http/CHANGELOG.md +++ b/crates/transport-http/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.9.0 - Simplify Service impls ([#1861](https://github.com/alloy-rs/alloy/issues/1861)) ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 diff --git a/crates/transport-ipc/CHANGELOG.md b/crates/transport-ipc/CHANGELOG.md index 737a439fd96..a0e691513db 100644 --- a/crates/transport-ipc/CHANGELOG.md +++ b/crates/transport-ipc/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/transport-ws/CHANGELOG.md b/crates/transport-ws/CHANGELOG.md index 599f8b39624..d5389b13b32 100644 --- a/crates/transport-ws/CHANGELOG.md +++ b/crates/transport-ws/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks diff --git a/crates/transport/CHANGELOG.md b/crates/transport/CHANGELOG.md index 61e0708519f..1c2b3cdea28 100644 --- a/crates/transport/CHANGELOG.md +++ b/crates/transport/CHANGELOG.md @@ -5,6 +5,12 @@ 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.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30 + +### Miscellaneous Tasks + +- Release 0.9.0 + ## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20 ### Miscellaneous Tasks