From 7fea67f90e54e8da9a6dc5c2de4648200cd50009 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Tue, 1 Oct 2024 19:35:07 +0200 Subject: [PATCH] chore: release 0.4.1 --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.toml | 2 +- crates/alloy/CHANGELOG.md | 6 ++++++ crates/consensus/CHANGELOG.md | 11 +++++++++++ crates/contract/CHANGELOG.md | 4 ++++ crates/eip7547/CHANGELOG.md | 6 ++++++ crates/eips/CHANGELOG.md | 11 +++++++++++ crates/genesis/CHANGELOG.md | 4 ++++ crates/json-rpc/CHANGELOG.md | 1 + crates/network-primitives/CHANGELOG.md | 4 ++++ crates/network/CHANGELOG.md | 4 ++++ crates/node-bindings/CHANGELOG.md | 1 + crates/provider/CHANGELOG.md | 1 + crates/pubsub/CHANGELOG.md | 4 ++++ crates/rpc-client/CHANGELOG.md | 1 + crates/rpc-types-admin/CHANGELOG.md | 6 ++++++ crates/rpc-types-anvil/CHANGELOG.md | 6 ++++++ crates/rpc-types-beacon/CHANGELOG.md | 4 ++++ crates/rpc-types-debug/CHANGELOG.md | 1 + crates/rpc-types-engine/CHANGELOG.md | 1 + crates/rpc-types-eth/CHANGELOG.md | 1 + crates/rpc-types-mev/CHANGELOG.md | 4 ++++ crates/rpc-types-trace/CHANGELOG.md | 4 ++++ crates/rpc-types-txpool/CHANGELOG.md | 4 ++++ crates/rpc-types/CHANGELOG.md | 4 ++++ crates/serde/CHANGELOG.md | 4 ++++ crates/signer-aws/CHANGELOG.md | 6 ++++++ crates/signer-gcp/CHANGELOG.md | 6 ++++++ crates/signer-ledger/CHANGELOG.md | 6 ++++++ crates/signer-local/CHANGELOG.md | 4 ++++ crates/signer-trezor/CHANGELOG.md | 4 ++++ crates/signer/CHANGELOG.md | 6 ++++++ crates/transport-http/CHANGELOG.md | 4 ++++ crates/transport-ipc/CHANGELOG.md | 6 ++++++ crates/transport-ws/CHANGELOG.md | 6 ++++++ crates/transport/CHANGELOG.md | 4 ++++ 36 files changed, 169 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 31285e12282..a80cb0977c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,24 @@ 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.4.1](https://github.com/alloy-rs/alloy/releases/tag/v0.4.1) - 2024-10-01 + +### Bug Fixes + +- Safe match for next base fee ([#1399](https://github.com/alloy-rs/alloy/issues/1399)) + +### Dependencies + +- Bump alloy-eip7702 + +### Features + +- [consensus] Bincode compatibility for EIP-7702 ([#1404](https://github.com/alloy-rs/alloy/issues/1404)) + +### Miscellaneous Tasks + +- [consensus] Less derives for bincode compatible types ([#1401](https://github.com/alloy-rs/alloy/issues/1401)) + ## [0.4.0](https://github.com/alloy-rs/alloy/releases/tag/v0.4.0) - 2024-09-30 ### Bug Fixes @@ -55,6 +73,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.4.0 - Rm outdated comments ([#1392](https://github.com/alloy-rs/alloy/issues/1392)) - Move type def to where it belongs ([#1391](https://github.com/alloy-rs/alloy/issues/1391)) - Update comment to be more accurate ([#1390](https://github.com/alloy-rs/alloy/issues/1390)) diff --git a/Cargo.toml b/Cargo.toml index bed8460c30d..ea40df3c6a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.4.0" +version = "0.4.1" edition = "2021" rust-version = "1.79" authors = ["Alloy Contributors"] diff --git a/crates/alloy/CHANGELOG.md b/crates/alloy/CHANGELOG.md index fc7cf7a0380..024e1dfb51b 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.4.0](https://github.com/alloy-rs/alloy/releases/tag/v0.4.0) - 2024-09-30 + +### Miscellaneous Tasks + +- Release 0.4.0 + ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 ### Features diff --git a/crates/consensus/CHANGELOG.md b/crates/consensus/CHANGELOG.md index 9b2d93f57eb..4e8cf6d5dbb 100644 --- a/crates/consensus/CHANGELOG.md +++ b/crates/consensus/CHANGELOG.md @@ -5,6 +5,16 @@ 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.4.1](https://github.com/alloy-rs/alloy/releases/tag/v0.4.1) - 2024-10-01 + +### Features + +- [consensus] Bincode compatibility for EIP-7702 ([#1404](https://github.com/alloy-rs/alloy/issues/1404)) + +### Miscellaneous Tasks + +- [consensus] Less derives for bincode compatible types ([#1401](https://github.com/alloy-rs/alloy/issues/1401)) + ## [0.4.0](https://github.com/alloy-rs/alloy/releases/tag/v0.4.0) - 2024-09-30 ### Bug Fixes @@ -23,6 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.4.0 - Rm outdated comments ([#1392](https://github.com/alloy-rs/alloy/issues/1392)) ### Other diff --git a/crates/contract/CHANGELOG.md b/crates/contract/CHANGELOG.md index 3f65f9637ca..487085a51d7 100644 --- a/crates/contract/CHANGELOG.md +++ b/crates/contract/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Replace std/hashbrown with alloy_primitives::map ([#1384](https://github.com/alloy-rs/alloy/issues/1384)) +### Miscellaneous Tasks + +- Release 0.4.0 + ### Other - Make `gas_limit` u64 for transactions ([#1382](https://github.com/alloy-rs/alloy/issues/1382)) diff --git a/crates/eip7547/CHANGELOG.md b/crates/eip7547/CHANGELOG.md index f1573d4e3eb..7d2903acb3a 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.4.0](https://github.com/alloy-rs/alloy/releases/tag/v0.4.0) - 2024-09-30 + +### Miscellaneous Tasks + +- Release 0.4.0 + ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 ### Miscellaneous Tasks diff --git a/crates/eips/CHANGELOG.md b/crates/eips/CHANGELOG.md index 6c4f8931709..8f55bdfe727 100644 --- a/crates/eips/CHANGELOG.md +++ b/crates/eips/CHANGELOG.md @@ -5,6 +5,16 @@ 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.4.1](https://github.com/alloy-rs/alloy/releases/tag/v0.4.1) - 2024-10-01 + +### Bug Fixes + +- Safe match for next base fee ([#1399](https://github.com/alloy-rs/alloy/issues/1399)) + +### Features + +- [consensus] Bincode compatibility for EIP-7702 ([#1404](https://github.com/alloy-rs/alloy/issues/1404)) + ## [0.4.0](https://github.com/alloy-rs/alloy/releases/tag/v0.4.0) - 2024-09-30 ### Bug Fixes @@ -20,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.4.0 - Use std::error ### Other diff --git a/crates/genesis/CHANGELOG.md b/crates/genesis/CHANGELOG.md index b8dd42c478d..9cf784f80a3 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.4.0](https://github.com/alloy-rs/alloy/releases/tag/v0.4.0) - 2024-09-30 +### Miscellaneous Tasks + +- Release 0.4.0 + ### Other - Make `gas_limit` u64 for transactions ([#1382](https://github.com/alloy-rs/alloy/issues/1382)) diff --git a/crates/json-rpc/CHANGELOG.md b/crates/json-rpc/CHANGELOG.md index 5bea845ee6d..fee523ecce7 100644 --- a/crates/json-rpc/CHANGELOG.md +++ b/crates/json-rpc/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.4.0 - Remove an unused lifetime ([#1336](https://github.com/alloy-rs/alloy/issues/1336)) ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 diff --git a/crates/network-primitives/CHANGELOG.md b/crates/network-primitives/CHANGELOG.md index 4d7a91479c2..b1e1f7e0856 100644 --- a/crates/network-primitives/CHANGELOG.md +++ b/crates/network-primitives/CHANGELOG.md @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [provider] Subscribe to new blocks if possible in heartbeat ([#1321](https://github.com/alloy-rs/alloy/issues/1321)) - Add getters into TransactionResponse and update implementations ([#1328](https://github.com/alloy-rs/alloy/issues/1328)) +### Miscellaneous Tasks + +- Release 0.4.0 + ### Other - Add supertrait alloy_consensus::Transaction to RPC TransactionResponse ([#1387](https://github.com/alloy-rs/alloy/issues/1387)) diff --git a/crates/network/CHANGELOG.md b/crates/network/CHANGELOG.md index 7f112f288dc..991b5337f63 100644 --- a/crates/network/CHANGELOG.md +++ b/crates/network/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Replace std/hashbrown with alloy_primitives::map ([#1384](https://github.com/alloy-rs/alloy/issues/1384)) +### Miscellaneous Tasks + +- Release 0.4.0 + ### Other - Make `gas_limit` u64 for transactions ([#1382](https://github.com/alloy-rs/alloy/issues/1382)) diff --git a/crates/node-bindings/CHANGELOG.md b/crates/node-bindings/CHANGELOG.md index 85e24633e4b..ea35f740bac 100644 --- a/crates/node-bindings/CHANGELOG.md +++ b/crates/node-bindings/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.4.0 - Fix some warnings ([#1320](https://github.com/alloy-rs/alloy/issues/1320)) ### Styling diff --git a/crates/provider/CHANGELOG.md b/crates/provider/CHANGELOG.md index 12cf4421516..2bf4341873f 100644 --- a/crates/provider/CHANGELOG.md +++ b/crates/provider/CHANGELOG.md @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.4.0 - Move type def to where it belongs ([#1391](https://github.com/alloy-rs/alloy/issues/1391)) - Fix some warnings ([#1320](https://github.com/alloy-rs/alloy/issues/1320)) diff --git a/crates/pubsub/CHANGELOG.md b/crates/pubsub/CHANGELOG.md index 2c78a5208b8..5ba93cf79ea 100644 --- a/crates/pubsub/CHANGELOG.md +++ b/crates/pubsub/CHANGELOG.md @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Replace std/hashbrown with alloy_primitives::map ([#1384](https://github.com/alloy-rs/alloy/issues/1384)) - [provider] Subscribe to new blocks if possible in heartbeat ([#1321](https://github.com/alloy-rs/alloy/issues/1321)) +### Miscellaneous Tasks + +- Release 0.4.0 + ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 ### Miscellaneous Tasks diff --git a/crates/rpc-client/CHANGELOG.md b/crates/rpc-client/CHANGELOG.md index 89ef41ac972..68275fd1f3e 100644 --- a/crates/rpc-client/CHANGELOG.md +++ b/crates/rpc-client/CHANGELOG.md @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.4.0 - Fix some warnings ([#1320](https://github.com/alloy-rs/alloy/issues/1320)) ### Styling diff --git a/crates/rpc-types-admin/CHANGELOG.md b/crates/rpc-types-admin/CHANGELOG.md index 2a56e2036b7..70bd97edf62 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.4.0](https://github.com/alloy-rs/alloy/releases/tag/v0.4.0) - 2024-09-30 + +### Miscellaneous Tasks + +- Release 0.4.0 + ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 ### Miscellaneous Tasks diff --git a/crates/rpc-types-anvil/CHANGELOG.md b/crates/rpc-types-anvil/CHANGELOG.md index 8194d1cb449..44bfea607f6 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.4.0](https://github.com/alloy-rs/alloy/releases/tag/v0.4.0) - 2024-09-30 + +### Miscellaneous Tasks + +- Release 0.4.0 + ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 ### Miscellaneous Tasks diff --git a/crates/rpc-types-beacon/CHANGELOG.md b/crates/rpc-types-beacon/CHANGELOG.md index cc6cc093b4f..9da9ba7308e 100644 --- a/crates/rpc-types-beacon/CHANGELOG.md +++ b/crates/rpc-types-beacon/CHANGELOG.md @@ -13,6 +13,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [rpc-types-beacon] `BuilderBlockValidationRequestV4` ([#1322](https://github.com/alloy-rs/alloy/issues/1322)) - [rpc-types-beacon] `BuilderBlockValidationRequestV3` ([#1310](https://github.com/alloy-rs/alloy/issues/1310)) +### Miscellaneous Tasks + +- Release 0.4.0 + ### Testing - Update test cases with addresses ([#1358](https://github.com/alloy-rs/alloy/issues/1358)) diff --git a/crates/rpc-types-debug/CHANGELOG.md b/crates/rpc-types-debug/CHANGELOG.md index 9af553e5d68..51dfa667063 100644 --- a/crates/rpc-types-debug/CHANGELOG.md +++ b/crates/rpc-types-debug/CHANGELOG.md @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.4.0 - Update comment to be more accurate ([#1390](https://github.com/alloy-rs/alloy/issues/1390)) - Add codes into execution witness ([#1352](https://github.com/alloy-rs/alloy/issues/1352)) diff --git a/crates/rpc-types-engine/CHANGELOG.md b/crates/rpc-types-engine/CHANGELOG.md index 8c773a8a331..d5d5521d15d 100644 --- a/crates/rpc-types-engine/CHANGELOG.md +++ b/crates/rpc-types-engine/CHANGELOG.md @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.4.0 - Reexport BlobAndProofV1 ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 diff --git a/crates/rpc-types-eth/CHANGELOG.md b/crates/rpc-types-eth/CHANGELOG.md index fd12045f3c4..042417a970a 100644 --- a/crates/rpc-types-eth/CHANGELOG.md +++ b/crates/rpc-types-eth/CHANGELOG.md @@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.4.0 - Fix warnings on no_std ([#1355](https://github.com/alloy-rs/alloy/issues/1355)) ### Other diff --git a/crates/rpc-types-mev/CHANGELOG.md b/crates/rpc-types-mev/CHANGELOG.md index 08c64eafb1f..b7e2631d5ef 100644 --- a/crates/rpc-types-mev/CHANGELOG.md +++ b/crates/rpc-types-mev/CHANGELOG.md @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add builder style functions to ethcallbundle ([#1325](https://github.com/alloy-rs/alloy/issues/1325)) - Bundle hash on ethsendbundle ([#1308](https://github.com/alloy-rs/alloy/issues/1308)) +### Miscellaneous Tasks + +- Release 0.4.0 + ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 ### Miscellaneous Tasks diff --git a/crates/rpc-types-trace/CHANGELOG.md b/crates/rpc-types-trace/CHANGELOG.md index 2f52f0acec1..c098445f391 100644 --- a/crates/rpc-types-trace/CHANGELOG.md +++ b/crates/rpc-types-trace/CHANGELOG.md @@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Replace std/hashbrown with alloy_primitives::map ([#1384](https://github.com/alloy-rs/alloy/issues/1384)) +### Miscellaneous Tasks + +- Release 0.4.0 + ### Other - Add `OperationType::OpEofCreate` ([#1327](https://github.com/alloy-rs/alloy/issues/1327)) diff --git a/crates/rpc-types-txpool/CHANGELOG.md b/crates/rpc-types-txpool/CHANGELOG.md index edb062cd2f2..cac21653c04 100644 --- a/crates/rpc-types-txpool/CHANGELOG.md +++ b/crates/rpc-types-txpool/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.4.0](https://github.com/alloy-rs/alloy/releases/tag/v0.4.0) - 2024-09-30 +### Miscellaneous Tasks + +- Release 0.4.0 + ### Testing - Update test cases with addresses ([#1358](https://github.com/alloy-rs/alloy/issues/1358)) diff --git a/crates/rpc-types/CHANGELOG.md b/crates/rpc-types/CHANGELOG.md index 0ffe61db654..0928d955836 100644 --- a/crates/rpc-types/CHANGELOG.md +++ b/crates/rpc-types/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Replace std/hashbrown with alloy_primitives::map ([#1384](https://github.com/alloy-rs/alloy/issues/1384)) +### Miscellaneous Tasks + +- Release 0.4.0 + ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 ### Miscellaneous Tasks diff --git a/crates/serde/CHANGELOG.md b/crates/serde/CHANGELOG.md index 08087c6a46b..69c96511508 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 - Replace std/hashbrown with alloy_primitives::map ([#1384](https://github.com/alloy-rs/alloy/issues/1384)) - [serde] Remove deprecated `num` module ([#1350](https://github.com/alloy-rs/alloy/issues/1350)) +### Miscellaneous Tasks + +- Release 0.4.0 + ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 ### Miscellaneous Tasks diff --git a/crates/signer-aws/CHANGELOG.md b/crates/signer-aws/CHANGELOG.md index 48a7fd808e5..90ac66c16f1 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.4.0](https://github.com/alloy-rs/alloy/releases/tag/v0.4.0) - 2024-09-30 + +### Miscellaneous Tasks + +- Release 0.4.0 + ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 ### Miscellaneous Tasks diff --git a/crates/signer-gcp/CHANGELOG.md b/crates/signer-gcp/CHANGELOG.md index 7361c8c62e0..400dfc06162 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.4.0](https://github.com/alloy-rs/alloy/releases/tag/v0.4.0) - 2024-09-30 + +### Miscellaneous Tasks + +- Release 0.4.0 + ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 ### Miscellaneous Tasks diff --git a/crates/signer-ledger/CHANGELOG.md b/crates/signer-ledger/CHANGELOG.md index a6c82bc3f50..3da0fb9cc95 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.4.0](https://github.com/alloy-rs/alloy/releases/tag/v0.4.0) - 2024-09-30 + +### Miscellaneous Tasks + +- Release 0.4.0 + ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 ### Miscellaneous Tasks diff --git a/crates/signer-local/CHANGELOG.md b/crates/signer-local/CHANGELOG.md index 4061d4ef7f5..9db9f31588c 100644 --- a/crates/signer-local/CHANGELOG.md +++ b/crates/signer-local/CHANGELOG.md @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Replace std/hashbrown with alloy_primitives::map ([#1384](https://github.com/alloy-rs/alloy/issues/1384)) - [signer-local] Add `keystore-geth-compat` feature ([#1381](https://github.com/alloy-rs/alloy/issues/1381)) +### Miscellaneous Tasks + +- Release 0.4.0 + ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 ### Miscellaneous Tasks diff --git a/crates/signer-trezor/CHANGELOG.md b/crates/signer-trezor/CHANGELOG.md index aa66c594030..dcc1357d006 100644 --- a/crates/signer-trezor/CHANGELOG.md +++ b/crates/signer-trezor/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.4.0](https://github.com/alloy-rs/alloy/releases/tag/v0.4.0) - 2024-09-30 +### Miscellaneous Tasks + +- Release 0.4.0 + ### Other - Add supertrait alloy_consensus::Transaction to RPC TransactionResponse ([#1387](https://github.com/alloy-rs/alloy/issues/1387)) diff --git a/crates/signer/CHANGELOG.md b/crates/signer/CHANGELOG.md index 4ee0afa8197..572f59a09c2 100644 --- a/crates/signer/CHANGELOG.md +++ b/crates/signer/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.4.0](https://github.com/alloy-rs/alloy/releases/tag/v0.4.0) - 2024-09-30 + +### Miscellaneous Tasks + +- Release 0.4.0 + ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 ### Miscellaneous Tasks diff --git a/crates/transport-http/CHANGELOG.md b/crates/transport-http/CHANGELOG.md index 0cfee769147..d045e75ec38 100644 --- a/crates/transport-http/CHANGELOG.md +++ b/crates/transport-http/CHANGELOG.md @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [transport-http] JWT auth layer ([#1314](https://github.com/alloy-rs/alloy/issues/1314)) +### Miscellaneous Tasks + +- Release 0.4.0 + ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 ### Features diff --git a/crates/transport-ipc/CHANGELOG.md b/crates/transport-ipc/CHANGELOG.md index 808af7cfdb4..2fbe0670acc 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.4.0](https://github.com/alloy-rs/alloy/releases/tag/v0.4.0) - 2024-09-30 + +### Miscellaneous Tasks + +- Release 0.4.0 + ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 ### Miscellaneous Tasks diff --git a/crates/transport-ws/CHANGELOG.md b/crates/transport-ws/CHANGELOG.md index 07f8dd5cfca..f5c007df781 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.4.0](https://github.com/alloy-rs/alloy/releases/tag/v0.4.0) - 2024-09-30 + +### Miscellaneous Tasks + +- Release 0.4.0 + ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 ### Miscellaneous Tasks diff --git a/crates/transport/CHANGELOG.md b/crates/transport/CHANGELOG.md index dd8ff620a19..fe34ba2f35c 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.4.0](https://github.com/alloy-rs/alloy/releases/tag/v0.4.0) - 2024-09-30 +### Miscellaneous Tasks + +- Release 0.4.0 + ### Testing - Add retry test ([#1373](https://github.com/alloy-rs/alloy/issues/1373))