From caa380d188da17d3795b7d4f540609c1b64ff3c5 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Wed, 6 Nov 2024 15:45:43 +0100 Subject: [PATCH] chore: release 0.6.1 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- crates/alloy/CHANGELOG.md | 6 ++++++ crates/consensus/CHANGELOG.md | 7 +++++++ crates/contract/CHANGELOG.md | 4 ++++ crates/eip5792/CHANGELOG.md | 4 ++++ crates/eip7547/CHANGELOG.md | 6 ++++++ crates/eips/CHANGELOG.md | 1 + crates/genesis/CHANGELOG.md | 4 ++++ crates/json-rpc/CHANGELOG.md | 4 ++++ crates/network-primitives/CHANGELOG.md | 10 ++++++++++ crates/network/CHANGELOG.md | 10 ++++++++++ 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 | 4 ++++ crates/rpc-types-beacon/CHANGELOG.md | 4 ++++ crates/rpc-types-debug/CHANGELOG.md | 6 ++++++ crates/rpc-types-engine/CHANGELOG.md | 1 + crates/rpc-types-eth/CHANGELOG.md | 10 ++++++++++ crates/rpc-types-mev/CHANGELOG.md | 6 ++++++ crates/rpc-types-trace/CHANGELOG.md | 4 ++++ crates/rpc-types-txpool/CHANGELOG.md | 4 ++++ crates/rpc-types/CHANGELOG.md | 6 ++++++ crates/serde/CHANGELOG.md | 4 ++++ crates/signer-aws/CHANGELOG.md | 4 ++++ crates/signer-gcp/CHANGELOG.md | 4 ++++ crates/signer-ledger/CHANGELOG.md | 4 ++++ crates/signer-local/CHANGELOG.md | 4 ++++ crates/signer-trezor/CHANGELOG.md | 4 ++++ crates/signer/CHANGELOG.md | 4 ++++ crates/transport-http/CHANGELOG.md | 6 ++++++ crates/transport-ipc/CHANGELOG.md | 6 ++++++ crates/transport-ws/CHANGELOG.md | 6 ++++++ crates/transport/CHANGELOG.md | 4 ++++ 37 files changed, 187 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 403e5aa3878..0b3c6aa96eb 100644 --- a/CHANGELOG.md +++ b/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.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 + +### Bug Fixes + +- Re-introduce HeaderResponse trait ([#1627](https://github.com/alloy-rs/alloy/issues/1627)) + ## [0.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 ### Bug Fixes @@ -54,6 +60,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.6.0 - Add default to payloadattributes ([#1625](https://github.com/alloy-rs/alloy/issues/1625)) - Make withdrawals pub ([#1623](https://github.com/alloy-rs/alloy/issues/1623)) - Misc clippy ([#1607](https://github.com/alloy-rs/alloy/issues/1607)) diff --git a/Cargo.toml b/Cargo.toml index 851dc1cd689..1f428eff0c7 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.79" authors = ["Alloy Contributors"] diff --git a/crates/alloy/CHANGELOG.md b/crates/alloy/CHANGELOG.md index 3ebe3802c5f..e1d4fd017e4 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.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 + +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/consensus/CHANGELOG.md b/crates/consensus/CHANGELOG.md index a1f755e2ddf..4b60307565f 100644 --- a/crates/consensus/CHANGELOG.md +++ b/crates/consensus/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.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 + +### Bug Fixes + +- Re-introduce HeaderResponse trait ([#1627](https://github.com/alloy-rs/alloy/issues/1627)) + ## [0.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 ### Bug Fixes @@ -27,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.6.0 - Misc clippy ([#1607](https://github.com/alloy-rs/alloy/issues/1607)) - Add blockbody default ([#1559](https://github.com/alloy-rs/alloy/issues/1559)) diff --git a/crates/contract/CHANGELOG.md b/crates/contract/CHANGELOG.md index 712de15285c..c12749ac251 100644 --- a/crates/contract/CHANGELOG.md +++ b/crates/contract/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 +### Miscellaneous Tasks + +- Release 0.6.0 + ### Other - Embed TxEnvelope into `rpc-types-eth::Transaction` ([#1460](https://github.com/alloy-rs/alloy/issues/1460)) diff --git a/crates/eip5792/CHANGELOG.md b/crates/eip5792/CHANGELOG.md index 99a5230cd25..1bfc7eb058f 100644 --- a/crates/eip5792/CHANGELOG.md +++ b/crates/eip5792/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 +### Miscellaneous Tasks + +- Release 0.6.0 + ### Other - Use `ChainId` in `WalletCapabilities` ([#1622](https://github.com/alloy-rs/alloy/issues/1622)) diff --git a/crates/eip7547/CHANGELOG.md b/crates/eip7547/CHANGELOG.md index 6598fe6afab..515831bb501 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.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 + +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/eips/CHANGELOG.md b/crates/eips/CHANGELOG.md index c5f55292a4a..534b9911820 100644 --- a/crates/eips/CHANGELOG.md +++ b/crates/eips/CHANGELOG.md @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.6.0 - Make withdrawals pub ([#1623](https://github.com/alloy-rs/alloy/issues/1623)) - Fix some compile issues for no-std test ([#1606](https://github.com/alloy-rs/alloy/issues/1606)) diff --git a/crates/genesis/CHANGELOG.md b/crates/genesis/CHANGELOG.md index 7e5182dcd37..44e3b79de2e 100644 --- a/crates/genesis/CHANGELOG.md +++ b/crates/genesis/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 +### Miscellaneous Tasks + +- Release 0.6.0 + ### Refactor - [genesis] Small refactor ([#1618](https://github.com/alloy-rs/alloy/issues/1618)) diff --git a/crates/json-rpc/CHANGELOG.md b/crates/json-rpc/CHANGELOG.md index c9a17d8c594..07e0ca987b3 100644 --- a/crates/json-rpc/CHANGELOG.md +++ b/crates/json-rpc/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 +### Miscellaneous Tasks + +- Release 0.6.0 + ### Testing - [json-rpc] Add unit tests for `Id` ([#1617](https://github.com/alloy-rs/alloy/issues/1617)) diff --git a/crates/network-primitives/CHANGELOG.md b/crates/network-primitives/CHANGELOG.md index 96a1346216a..74e4dfbe609 100644 --- a/crates/network-primitives/CHANGELOG.md +++ b/crates/network-primitives/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.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 + +### Bug Fixes + +- Re-introduce HeaderResponse trait ([#1627](https://github.com/alloy-rs/alloy/issues/1627)) + ## [0.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 ### Features - Embed consensus header into RPC ([#1573](https://github.com/alloy-rs/alloy/issues/1573)) +### Miscellaneous Tasks + +- Release 0.6.0 + ### Styling - Move txtype-specific builders to network-primitives ([#1602](https://github.com/alloy-rs/alloy/issues/1602)) diff --git a/crates/network/CHANGELOG.md b/crates/network/CHANGELOG.md index db14c127f81..1ac3444aa5b 100644 --- a/crates/network/CHANGELOG.md +++ b/crates/network/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.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 + +### Bug Fixes + +- Re-introduce HeaderResponse trait ([#1627](https://github.com/alloy-rs/alloy/issues/1627)) + ## [0.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 ### Bug Fixes @@ -18,6 +24,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Use `OtherFields` on `UnknownTypedTransaction` ([#1605](https://github.com/alloy-rs/alloy/issues/1605)) - Embed consensus header into RPC ([#1573](https://github.com/alloy-rs/alloy/issues/1573)) +### Miscellaneous Tasks + +- Release 0.6.0 + ### Other - Embed TxEnvelope into `rpc-types-eth::Transaction` ([#1460](https://github.com/alloy-rs/alloy/issues/1460)) diff --git a/crates/node-bindings/CHANGELOG.md b/crates/node-bindings/CHANGELOG.md index 64134078513..a73cd6ce030 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.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 + +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/provider/CHANGELOG.md b/crates/provider/CHANGELOG.md index c5b2056e066..19eb279d708 100644 --- a/crates/provider/CHANGELOG.md +++ b/crates/provider/CHANGELOG.md @@ -21,6 +21,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Introduce `anvil_reorg` and related types. ([#1576](https://github.com/alloy-rs/alloy/issues/1576)) - Make eth_call and eth_estimateGas default to using Pending block ([#1568](https://github.com/alloy-rs/alloy/issues/1568)) +### Miscellaneous Tasks + +- Release 0.6.0 + ### Other - Embed TxEnvelope into `rpc-types-eth::Transaction` ([#1460](https://github.com/alloy-rs/alloy/issues/1460)) diff --git a/crates/pubsub/CHANGELOG.md b/crates/pubsub/CHANGELOG.md index 3696af9a2e6..c4ba6f63bed 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.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 + +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/rpc-client/CHANGELOG.md b/crates/rpc-client/CHANGELOG.md index e5fe2c81d4b..49abc97658d 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.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 + +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/rpc-types-admin/CHANGELOG.md b/crates/rpc-types-admin/CHANGELOG.md index 36296fd320a..dad98b1be76 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.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 + +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/rpc-types-anvil/CHANGELOG.md b/crates/rpc-types-anvil/CHANGELOG.md index 029db2b8b89..c973e1db645 100644 --- a/crates/rpc-types-anvil/CHANGELOG.md +++ b/crates/rpc-types-anvil/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Introduce `anvil_reorg` and related types. ([#1576](https://github.com/alloy-rs/alloy/issues/1576)) +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/rpc-types-beacon/CHANGELOG.md b/crates/rpc-types-beacon/CHANGELOG.md index a055eca0cc3..f683d337225 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 - Relay types ([#1577](https://github.com/alloy-rs/alloy/issues/1577)) +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/rpc-types-debug/CHANGELOG.md b/crates/rpc-types-debug/CHANGELOG.md index 95b1a78caa5..0c108f4a33d 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.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 + +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/rpc-types-engine/CHANGELOG.md b/crates/rpc-types-engine/CHANGELOG.md index 5583d4e823b..fa703d6255f 100644 --- a/crates/rpc-types-engine/CHANGELOG.md +++ b/crates/rpc-types-engine/CHANGELOG.md @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.6.0 - Add default to payloadattributes ([#1625](https://github.com/alloy-rs/alloy/issues/1625)) ### Other diff --git a/crates/rpc-types-eth/CHANGELOG.md b/crates/rpc-types-eth/CHANGELOG.md index 18c9657b24d..758eb0fdf00 100644 --- a/crates/rpc-types-eth/CHANGELOG.md +++ b/crates/rpc-types-eth/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.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 + +### Bug Fixes + +- Re-introduce HeaderResponse trait ([#1627](https://github.com/alloy-rs/alloy/issues/1627)) + ## [0.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 ### Bug Fixes @@ -17,6 +23,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Implement Arbitrary for transaction types ([#1603](https://github.com/alloy-rs/alloy/issues/1603)) - Embed consensus header into RPC ([#1573](https://github.com/alloy-rs/alloy/issues/1573)) +### Miscellaneous Tasks + +- Release 0.6.0 + ### Other - Embed TxEnvelope into `rpc-types-eth::Transaction` ([#1460](https://github.com/alloy-rs/alloy/issues/1460)) diff --git a/crates/rpc-types-mev/CHANGELOG.md b/crates/rpc-types-mev/CHANGELOG.md index 392f880a7d8..67408fd3f1f 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.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 + +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/rpc-types-trace/CHANGELOG.md b/crates/rpc-types-trace/CHANGELOG.md index 67052068ee1..18b9a26a381 100644 --- a/crates/rpc-types-trace/CHANGELOG.md +++ b/crates/rpc-types-trace/CHANGELOG.md @@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Make Otterscan types generic over header ([#1593](https://github.com/alloy-rs/alloy/issues/1593)) - Embed consensus header into RPC ([#1573](https://github.com/alloy-rs/alloy/issues/1573)) +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/rpc-types-txpool/CHANGELOG.md b/crates/rpc-types-txpool/CHANGELOG.md index 010ba3a67f6..6db8b680c66 100644 --- a/crates/rpc-types-txpool/CHANGELOG.md +++ b/crates/rpc-types-txpool/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Integrate signature with boolean parity ([#1540](https://github.com/alloy-rs/alloy/issues/1540)) +### Miscellaneous Tasks + +- Release 0.6.0 + ### Other - Embed TxEnvelope into `rpc-types-eth::Transaction` ([#1460](https://github.com/alloy-rs/alloy/issues/1460)) diff --git a/crates/rpc-types/CHANGELOG.md b/crates/rpc-types/CHANGELOG.md index 3a84063e165..b3886e173a1 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.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 + +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/serde/CHANGELOG.md b/crates/serde/CHANGELOG.md index fe944c8b4c8..5e1da8516b0 100644 --- a/crates/serde/CHANGELOG.md +++ b/crates/serde/CHANGELOG.md @@ -16,6 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [`serde`] StorageKeyKind ([#1597](https://github.com/alloy-rs/alloy/issues/1597)) - Serde helpers for hashmaps and btreemaps with quantity key types ([#1579](https://github.com/alloy-rs/alloy/issues/1579)) +### Miscellaneous Tasks + +- Release 0.6.0 + ### Other - Add unit tests for `OtherFields` ([#1614](https://github.com/alloy-rs/alloy/issues/1614)) diff --git a/crates/signer-aws/CHANGELOG.md b/crates/signer-aws/CHANGELOG.md index ebd151cc283..897dbb46ec4 100644 --- a/crates/signer-aws/CHANGELOG.md +++ b/crates/signer-aws/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Integrate signature with boolean parity ([#1540](https://github.com/alloy-rs/alloy/issues/1540)) +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/signer-gcp/CHANGELOG.md b/crates/signer-gcp/CHANGELOG.md index c67e21a05e9..d8500900da3 100644 --- a/crates/signer-gcp/CHANGELOG.md +++ b/crates/signer-gcp/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Integrate signature with boolean parity ([#1540](https://github.com/alloy-rs/alloy/issues/1540)) +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/signer-ledger/CHANGELOG.md b/crates/signer-ledger/CHANGELOG.md index e52dfe180e0..69af924a03f 100644 --- a/crates/signer-ledger/CHANGELOG.md +++ b/crates/signer-ledger/CHANGELOG.md @@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Integrate signature with boolean parity ([#1540](https://github.com/alloy-rs/alloy/issues/1540)) +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/signer-local/CHANGELOG.md b/crates/signer-local/CHANGELOG.md index f1a70b92839..ec58ec3cb1b 100644 --- a/crates/signer-local/CHANGELOG.md +++ b/crates/signer-local/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Integrate signature with boolean parity ([#1540](https://github.com/alloy-rs/alloy/issues/1540)) +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/signer-trezor/CHANGELOG.md b/crates/signer-trezor/CHANGELOG.md index 0ed40925a75..5f6f6fcd858 100644 --- a/crates/signer-trezor/CHANGELOG.md +++ b/crates/signer-trezor/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Integrate signature with boolean parity ([#1540](https://github.com/alloy-rs/alloy/issues/1540)) +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/signer/CHANGELOG.md b/crates/signer/CHANGELOG.md index a1ec6a1a25c..97371e924d8 100644 --- a/crates/signer/CHANGELOG.md +++ b/crates/signer/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Integrate signature with boolean parity ([#1540](https://github.com/alloy-rs/alloy/issues/1540)) +### Miscellaneous Tasks + +- Release 0.6.0 + ### Refactor - [signer] Small refactor in signer utils ([#1615](https://github.com/alloy-rs/alloy/issues/1615)) diff --git a/crates/transport-http/CHANGELOG.md b/crates/transport-http/CHANGELOG.md index 4bb49672ac7..649af60b80d 100644 --- a/crates/transport-http/CHANGELOG.md +++ b/crates/transport-http/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.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 + +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/transport-ipc/CHANGELOG.md b/crates/transport-ipc/CHANGELOG.md index 6320d3e7107..0c27fb50c2c 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.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 + +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/transport-ws/CHANGELOG.md b/crates/transport-ws/CHANGELOG.md index e4152582089..60db8c498aa 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.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 + +### Miscellaneous Tasks + +- Release 0.6.0 + ## [0.5.4](https://github.com/alloy-rs/alloy/releases/tag/v0.5.4) - 2024-10-23 ### Miscellaneous Tasks diff --git a/crates/transport/CHANGELOG.md b/crates/transport/CHANGELOG.md index 154b57b977a..d28a95ec37d 100644 --- a/crates/transport/CHANGELOG.md +++ b/crates/transport/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.6.0](https://github.com/alloy-rs/alloy/releases/tag/v0.6.0) - 2024-11-06 +### Miscellaneous Tasks + +- Release 0.6.0 + ### Testing - [transport] Add unit tests for `Authorization` methods ([#1616](https://github.com/alloy-rs/alloy/issues/1616))