From 65db32eec22a3179ca8329939b996d7a222dd313 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Tue, 12 Nov 2024 12:55:16 +0100 Subject: [PATCH] chore: release 0.6.3 --- CHANGELOG.md | 10 +++- Cargo.toml | 2 +- crates/alloy/CHANGELOG.md | 32 +++++++++---- crates/consensus/CHANGELOG.md | 58 +++++++++++++++++----- crates/contract/CHANGELOG.md | 42 +++++++++++----- crates/eip5792/CHANGELOG.md | 4 +- crates/eip7547/CHANGELOG.md | 18 +++---- crates/eips/CHANGELOG.md | 66 +++++++++++++++++++------- crates/genesis/CHANGELOG.md | 37 +++++++++++++-- crates/json-rpc/CHANGELOG.md | 32 +++++++++++-- crates/network-primitives/CHANGELOG.md | 11 +++++ crates/network/CHANGELOG.md | 43 ++++++++++++++--- crates/node-bindings/CHANGELOG.md | 35 +++++++++++--- crates/provider/CHANGELOG.md | 57 ++++++++++++++++------ crates/pubsub/CHANGELOG.md | 32 +++++++++++-- crates/rpc-client/CHANGELOG.md | 34 +++++++++++-- crates/rpc-types-admin/CHANGELOG.md | 18 +++++++ crates/rpc-types-anvil/CHANGELOG.md | 30 ++++++++++-- crates/rpc-types-beacon/CHANGELOG.md | 27 +++++++++-- crates/rpc-types-debug/CHANGELOG.md | 9 +++- crates/rpc-types-engine/CHANGELOG.md | 45 +++++++++++++----- crates/rpc-types-eth/CHANGELOG.md | 53 ++++++++++++++++----- crates/rpc-types-mev/CHANGELOG.md | 9 +++- crates/rpc-types-trace/CHANGELOG.md | 28 +++++++++-- crates/rpc-types-txpool/CHANGELOG.md | 16 ++++++- crates/rpc-types/CHANGELOG.md | 29 +++++++---- crates/serde/CHANGELOG.md | 29 +++++++++-- crates/signer-aws/CHANGELOG.md | 28 +++++++---- crates/signer-gcp/CHANGELOG.md | 28 +++++++---- crates/signer-ledger/CHANGELOG.md | 28 +++++++---- crates/signer-local/CHANGELOG.md | 16 ++++++- crates/signer-trezor/CHANGELOG.md | 30 ++++++++---- crates/signer/CHANGELOG.md | 34 +++++++++++-- crates/transport-http/CHANGELOG.md | 32 +++++++++++-- crates/transport-ipc/CHANGELOG.md | 37 +++++++++++---- crates/transport-ws/CHANGELOG.md | 32 +++++++++++-- crates/transport/CHANGELOG.md | 34 +++++++++++-- 37 files changed, 878 insertions(+), 227 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 81dee027c63..c513c7879ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Bug Fixes @@ -14,11 +14,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Features +- [consensus] `TxEnvelope::signature` ([#1634](https://github.com/alloy-rs/alloy/issues/1634)) - [`network`] `AnyNetworkWallet` ([#1631](https://github.com/alloy-rs/alloy/issues/1631)) ### Miscellaneous Tasks -- Release 0.6.2 +- Ignore derivative ([#1639](https://github.com/alloy-rs/alloy/issues/1639)) +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + +### Other + +- Add trait method `Transaction::is_dynamic_fee` ([#1638](https://github.com/alloy-rs/alloy/issues/1638)) ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 diff --git a/Cargo.toml b/Cargo.toml index fbd6210a9b1..64bb00fa438 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.6.2" +version = "0.6.3" edition = "2021" rust-version = "1.79" authors = ["Alloy Contributors"] diff --git a/crates/alloy/CHANGELOG.md b/crates/alloy/CHANGELOG.md index 2bb7ea9455b..d5d7df6a404 100644 --- a/crates/alloy/CHANGELOG.md +++ b/crates/alloy/CHANGELOG.md @@ -5,11 +5,11 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Miscellaneous Tasks -- Release 0.6.2 +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 @@ -148,17 +148,37 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Features - Add net rpc namespace ([#989](https://github.com/alloy-rs/alloy/issues/989)) -- [alloy] Forward `rustls` & `native` reqwest TLS configuration to Alloy's metacrate ([#969](https://github.com/alloy-rs/alloy/issues/969)) -- Add eip-7702 helpers ([#950](https://github.com/alloy-rs/alloy/issues/950)) ### Miscellaneous Tasks - Release 0.1.4 - Release 0.1.3 (-p alloy) + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Features + +- [alloy] Forward `rustls` & `native` reqwest TLS configuration to Alloy's metacrate ([#969](https://github.com/alloy-rs/alloy/issues/969)) +- Add eip-7702 helpers ([#950](https://github.com/alloy-rs/alloy/issues/950)) + +### Miscellaneous Tasks + - Add more features to meta crate ([#953](https://github.com/alloy-rs/alloy/issues/953)) ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Bug Fixes - Include `alloy-contract?/pubsub` in `pubsub` feature ([#703](https://github.com/alloy-rs/alloy/issues/703)) @@ -166,7 +186,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Documentation -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - Unhide `sol!` wrapper in meta crate ([#654](https://github.com/alloy-rs/alloy/issues/654)) ### Features @@ -187,9 +206,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [eips] Compile tests with default features ([#860](https://github.com/alloy-rs/alloy/issues/860)) - Remove stale todos ([#354](https://github.com/alloy-rs/alloy/issues/354)) - [alloy] Re-export `alloy-core` items individually ([#230](https://github.com/alloy-rs/alloy/issues/230)) diff --git a/crates/consensus/CHANGELOG.md b/crates/consensus/CHANGELOG.md index 46eb538a288..316788e7cfd 100644 --- a/crates/consensus/CHANGELOG.md +++ b/crates/consensus/CHANGELOG.md @@ -5,12 +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.6.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Bug Fixes - Serde for transactions ([#1630](https://github.com/alloy-rs/alloy/issues/1630)) +### Features + +- [consensus] `TxEnvelope::signature` ([#1634](https://github.com/alloy-rs/alloy/issues/1634)) + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + +### Other + +- Add trait method `Transaction::is_dynamic_fee` ([#1638](https://github.com/alloy-rs/alloy/issues/1638)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Bug Fixes @@ -198,6 +210,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -296,26 +313,50 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 +### Features + +- Impl Transaction for TxEnvelope ([#1006](https://github.com/alloy-rs/alloy/issues/1006)) + +### Miscellaneous Tasks + +- Release 0.1.4 + +### Other + +- Remove signature.v parity before calculating tx hash ([#893](https://github.com/alloy-rs/alloy/issues/893)) + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + ### Documentation - Copy/paste error of eip-7251 link ([#961](https://github.com/alloy-rs/alloy/issues/961)) ### Features -- Impl Transaction for TxEnvelope ([#1006](https://github.com/alloy-rs/alloy/issues/1006)) - Add eip-7702 helpers ([#950](https://github.com/alloy-rs/alloy/issues/950)) ### Miscellaneous Tasks -- Release 0.1.4 - Release 0.1.3 - [eips] Make `sha2` optional, add `kzg-sidecar` feature ([#949](https://github.com/alloy-rs/alloy/issues/949)) -### Other +## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 -- Remove signature.v parity before calculating tx hash ([#893](https://github.com/alloy-rs/alloy/issues/893)) +### Documentation -## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Features + +- Add eip-7251 consolidation request ([#919](https://github.com/alloy-rs/alloy/issues/919)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 ### Bug Fixes @@ -344,12 +385,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Documentation -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - Update descriptions and top level summary ([#128](https://github.com/alloy-rs/alloy/issues/128)) ### Features -- Add eip-7251 consolidation request ([#919](https://github.com/alloy-rs/alloy/issues/919)) - Derive serde for header ([#902](https://github.com/alloy-rs/alloy/issues/902)) - Move `{,With}OtherFields` to serde crate ([#892](https://github.com/alloy-rs/alloy/issues/892)) - Add as_ is_ functions to envelope ([#872](https://github.com/alloy-rs/alloy/issues/872)) @@ -386,9 +425,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [clippy] Apply lint suggestions ([#903](https://github.com/alloy-rs/alloy/issues/903)) - Rm unused txtype mod ([#879](https://github.com/alloy-rs/alloy/issues/879)) - [other] Use type aliases where possible to improve clarity ([#859](https://github.com/alloy-rs/alloy/issues/859)) diff --git a/crates/contract/CHANGELOG.md b/crates/contract/CHANGELOG.md index 8bbc39cb4ee..c2b58527282 100644 --- a/crates/contract/CHANGELOG.md +++ b/crates/contract/CHANGELOG.md @@ -5,11 +5,11 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Miscellaneous Tasks -- Release 0.6.2 +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 @@ -97,12 +97,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 -- Release 0.3.5 ### Refactor - Separate transaction builders for tx types ([#1259](https://github.com/alloy-rs/alloy/issues/1259)) +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + +- Release 0.3.5 + ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 ### Features @@ -150,22 +155,42 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 +### Miscellaneous Tasks + +- Release 0.1.4 + +### Other + +- Allow to convert CallBuilderTo TransactionRequest ([#981](https://github.com/alloy-rs/alloy/issues/981)) + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + ### Features - [contract] Implement Filter's builder methods on Event ([#960](https://github.com/alloy-rs/alloy/issues/960)) ### Miscellaneous Tasks -- Release 0.1.4 - Release 0.1.3 ### Other -- Allow to convert CallBuilderTo TransactionRequest ([#981](https://github.com/alloy-rs/alloy/issues/981)) - [contract] Support state overrides for gas estimation ([#967](https://github.com/alloy-rs/alloy/issues/967)) ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Bug Fixes - [contract] Set `to` when calling with ContractInstance ([#913](https://github.com/alloy-rs/alloy/issues/913)) @@ -178,10 +203,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [deps] Bump `alloy-core` to `0.7.6` (latest), fix broken test and violated deny ([#862](https://github.com/alloy-rs/alloy/issues/862)) -### Documentation - -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - ### Features - [rpc] Split off `eth` namespace in `alloy-rpc-types` to `alloy-rpc-types-eth` ([#847](https://github.com/alloy-rs/alloy/issues/847)) @@ -205,9 +226,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - Fix warnings, check-cfg ([#776](https://github.com/alloy-rs/alloy/issues/776)) - Get_transaction_by_hash returns Option ([#714](https://github.com/alloy-rs/alloy/issues/714)) - Remove outdated comment ([#640](https://github.com/alloy-rs/alloy/issues/640)) diff --git a/crates/eip5792/CHANGELOG.md b/crates/eip5792/CHANGELOG.md index 0eb14c1a94f..f4074fb29ca 100644 --- a/crates/eip5792/CHANGELOG.md +++ b/crates/eip5792/CHANGELOG.md @@ -5,11 +5,11 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Miscellaneous Tasks -- Release 0.6.2 +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 diff --git a/crates/eip7547/CHANGELOG.md b/crates/eip7547/CHANGELOG.md index a6f6448baef..3676e0798ec 100644 --- a/crates/eip7547/CHANGELOG.md +++ b/crates/eip7547/CHANGELOG.md @@ -5,11 +5,11 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Miscellaneous Tasks -- Release 0.6.2 +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 @@ -140,18 +140,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) -### Features - -- [serde] Deprecate individual num::* for a generic `quantity` module ([#855](https://github.com/alloy-rs/alloy/issues/855)) -- Rename alloy-rpc-*-types to alloy-rpc-types-* ([#435](https://github.com/alloy-rs/alloy/issues/435)) -- Add initial EIP-7547 engine types ([#287](https://github.com/alloy-rs/alloy/issues/287)) - ### Miscellaneous Tasks - Release 0.1.2 - Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) - Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + +### Features + +- [serde] Deprecate individual num::* for a generic `quantity` module ([#855](https://github.com/alloy-rs/alloy/issues/855)) +- Rename alloy-rpc-*-types to alloy-rpc-types-* ([#435](https://github.com/alloy-rs/alloy/issues/435)) +- Add initial EIP-7547 engine types ([#287](https://github.com/alloy-rs/alloy/issues/287)) + ### Other - Add clippy at workspace level ([#766](https://github.com/alloy-rs/alloy/issues/766)) diff --git a/crates/eips/CHANGELOG.md b/crates/eips/CHANGELOG.md index 473655c80d9..e8d02f913f0 100644 --- a/crates/eips/CHANGELOG.md +++ b/crates/eips/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.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Miscellaneous Tasks @@ -170,6 +176,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -254,6 +265,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 +### Features + +- Add consolidation requests to v4 payload ([#1013](https://github.com/alloy-rs/alloy/issues/1013)) +- [eip1559] Support Optimism Canyon hardfork ([#1010](https://github.com/alloy-rs/alloy/issues/1010)) +- Impl `From` for `BlockHashOrNumber` ([#980](https://github.com/alloy-rs/alloy/issues/980)) + +### Miscellaneous Tasks + +- Release 0.1.4 +- Add helper functions for destructuring auth types ([#1022](https://github.com/alloy-rs/alloy/issues/1022)) +- Clean up 7702 encoding ([#1000](https://github.com/alloy-rs/alloy/issues/1000)) + +### Testing + +- Add missing unit test for op `calc_next_block_base_fee` ([#1008](https://github.com/alloy-rs/alloy/issues/1008)) + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + ### Bug Fixes - Deserialization of null storage keys in AccessListItem ([#955](https://github.com/alloy-rs/alloy/issues/955)) @@ -264,26 +293,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Features -- Add consolidation requests to v4 payload ([#1013](https://github.com/alloy-rs/alloy/issues/1013)) -- [eip1559] Support Optimism Canyon hardfork ([#1010](https://github.com/alloy-rs/alloy/issues/1010)) -- Impl `From` for `BlockHashOrNumber` ([#980](https://github.com/alloy-rs/alloy/issues/980)) - Add eip-7702 helpers ([#950](https://github.com/alloy-rs/alloy/issues/950)) - Add eip-7251 system contract address/code ([#956](https://github.com/alloy-rs/alloy/issues/956)) ### Miscellaneous Tasks -- Release 0.1.4 -- Add helper functions for destructuring auth types ([#1022](https://github.com/alloy-rs/alloy/issues/1022)) -- Clean up 7702 encoding ([#1000](https://github.com/alloy-rs/alloy/issues/1000)) - Release 0.1.3 - [eips] Add serde to Authorization types ([#964](https://github.com/alloy-rs/alloy/issues/964)) - [eips] Make `sha2` optional, add `kzg-sidecar` feature ([#949](https://github.com/alloy-rs/alloy/issues/949)) -### Testing +## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 -- Add missing unit test for op `calc_next_block_base_fee` ([#1008](https://github.com/alloy-rs/alloy/issues/1008)) +### Documentation -## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +- Update alloy-eips supported eip list ([#942](https://github.com/alloy-rs/alloy/issues/942)) +- Touch up docs, TODOs ([#918](https://github.com/alloy-rs/alloy/issues/918)) +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Features + +- Add eip-7251 consolidation request ([#919](https://github.com/alloy-rs/alloy/issues/919)) +- Add `BlockId::as_u64` ([#916](https://github.com/alloy-rs/alloy/issues/916)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update eip-2935 bytecode and address ([#934](https://github.com/alloy-rs/alloy/issues/934)) +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 ### Bug Fixes @@ -302,15 +341,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Documentation -- Update alloy-eips supported eip list ([#942](https://github.com/alloy-rs/alloy/issues/942)) -- Touch up docs, TODOs ([#918](https://github.com/alloy-rs/alloy/issues/918)) -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - Update descriptions and top level summary ([#128](https://github.com/alloy-rs/alloy/issues/128)) ### Features -- Add eip-7251 consolidation request ([#919](https://github.com/alloy-rs/alloy/issues/919)) -- Add `BlockId::as_u64` ([#916](https://github.com/alloy-rs/alloy/issues/916)) - Move `{,With}OtherFields` to serde crate ([#892](https://github.com/alloy-rs/alloy/issues/892)) - Derive `Default` for `WithdrawalRequest` and `DepositRequest` ([#867](https://github.com/alloy-rs/alloy/issues/867)) - [serde] Deprecate individual num::* for a generic `quantity` module ([#855](https://github.com/alloy-rs/alloy/issues/855)) @@ -336,10 +370,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update eip-2935 bytecode and address ([#934](https://github.com/alloy-rs/alloy/issues/934)) -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - Update EIP7002 withdrawal requests based on spec ([#885](https://github.com/alloy-rs/alloy/issues/885)) - [other] Use type aliases where possible to improve clarity ([#859](https://github.com/alloy-rs/alloy/issues/859)) - [eips] Compile tests with default features ([#860](https://github.com/alloy-rs/alloy/issues/860)) diff --git a/crates/genesis/CHANGELOG.md b/crates/genesis/CHANGELOG.md index 027ee67dd86..7e90faaadd0 100644 --- a/crates/genesis/CHANGELOG.md +++ b/crates/genesis/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.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Miscellaneous Tasks @@ -86,6 +92,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -134,10 +145,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Features + +- [genesis] Update `extra_fields` to use `OtherFields` ([#936](https://github.com/alloy-rs/alloy/issues/936)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Bug Fixes - Remove bad serde default and replace with manual default for chainconfig ([#915](https://github.com/alloy-rs/alloy/issues/915)) @@ -145,12 +177,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Documentation -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - Update descriptions and top level summary ([#128](https://github.com/alloy-rs/alloy/issues/128)) ### Features -- [genesis] Update `extra_fields` to use `OtherFields` ([#936](https://github.com/alloy-rs/alloy/issues/936)) - [serde] Deprecate individual num::* for a generic `quantity` module ([#855](https://github.com/alloy-rs/alloy/issues/855)) - Add Parlia genesis config for BSC ([#740](https://github.com/alloy-rs/alloy/issues/740)) - Add depositContractAddress to genesis ([#744](https://github.com/alloy-rs/alloy/issues/744)) @@ -163,9 +193,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - Remove redundant code from ethers ([#443](https://github.com/alloy-rs/alloy/issues/443)) - Error when missing to field in transaction conversion ([#365](https://github.com/alloy-rs/alloy/issues/365)) - Remove unused imports ([#224](https://github.com/alloy-rs/alloy/issues/224)) diff --git a/crates/json-rpc/CHANGELOG.md b/crates/json-rpc/CHANGELOG.md index 7093be223c3..3143aec80f9 100644 --- a/crates/json-rpc/CHANGELOG.md +++ b/crates/json-rpc/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.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Miscellaneous Tasks @@ -86,6 +92,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -145,10 +156,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Bug Fixes - Remove app-layer usage of transport error ([#363](https://github.com/alloy-rs/alloy/issues/363)) @@ -167,7 +195,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Documentation -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - Fix some backticks - Comments for deser impl - Doc fix @@ -198,9 +225,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [clippy] Apply lint suggestions ([#903](https://github.com/alloy-rs/alloy/issues/903)) - Simplify some RpcCall code ([#470](https://github.com/alloy-rs/alloy/issues/470)) - Clean up Display impls ([#222](https://github.com/alloy-rs/alloy/issues/222)) diff --git a/crates/network-primitives/CHANGELOG.md b/crates/network-primitives/CHANGELOG.md index 7fe4cc9f53b..d64b6490adf 100644 --- a/crates/network-primitives/CHANGELOG.md +++ b/crates/network-primitives/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.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Bug Fixes @@ -107,6 +113,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 diff --git a/crates/network/CHANGELOG.md b/crates/network/CHANGELOG.md index 906a0aba2d7..928eb06d46f 100644 --- a/crates/network/CHANGELOG.md +++ b/crates/network/CHANGELOG.md @@ -5,12 +5,20 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Features - [`network`] `AnyNetworkWallet` ([#1631](https://github.com/alloy-rs/alloy/issues/1631)) +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + +### Other + +- Add trait method `Transaction::is_dynamic_fee` ([#1638](https://github.com/alloy-rs/alloy/issues/1638)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Bug Fixes @@ -109,12 +117,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 -- Release 0.3.5 ### Refactor - Separate transaction builders for tx types ([#1259](https://github.com/alloy-rs/alloy/issues/1259)) +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + +- Release 0.3.5 + ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 ### Features @@ -175,15 +188,35 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Features - [network] Block context in ReceiptResponse ([#1003](https://github.com/alloy-rs/alloy/issues/1003)) -- [network] Add `input` method to `TransactionResponse` ([#959](https://github.com/alloy-rs/alloy/issues/959)) ### Miscellaneous Tasks - Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Features + +- [network] Add `input` method to `TransactionResponse` ([#959](https://github.com/alloy-rs/alloy/issues/959)) + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Bug Fixes - Populate hashes after setting sidecar ([#648](https://github.com/alloy-rs/alloy/issues/648)) @@ -204,7 +237,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Documentation -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - Update signer documentation ([#180](https://github.com/alloy-rs/alloy/issues/180)) - Fix comment @@ -233,9 +265,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [clippy] Apply lint suggestions ([#903](https://github.com/alloy-rs/alloy/issues/903)) - [other] Use type aliases where possible to improve clarity ([#859](https://github.com/alloy-rs/alloy/issues/859)) - [docs] Add doc aliases ([#843](https://github.com/alloy-rs/alloy/issues/843)) diff --git a/crates/node-bindings/CHANGELOG.md b/crates/node-bindings/CHANGELOG.md index eeadd62bbb9..1bf06589277 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.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Miscellaneous Tasks @@ -90,6 +96,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -159,10 +170,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Bug Fixes - Use port 0 for anvil by default ([#135](https://github.com/alloy-rs/alloy/issues/135)) @@ -171,10 +199,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [deps] Update to interprocess 2 ([#687](https://github.com/alloy-rs/alloy/issues/687)) -### Documentation - -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - ### Features - `std` feature flag for `alloy-consensus` ([#461](https://github.com/alloy-rs/alloy/issues/461)) @@ -184,9 +208,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [other] Use type aliases where possible to improve clarity ([#859](https://github.com/alloy-rs/alloy/issues/859)) - [docs] Crate completeness and fix typos ([#861](https://github.com/alloy-rs/alloy/issues/861)) - [docs] Add doc aliases ([#843](https://github.com/alloy-rs/alloy/issues/843)) diff --git a/crates/provider/CHANGELOG.md b/crates/provider/CHANGELOG.md index 36d4ad1cff8..2fb580253e5 100644 --- a/crates/provider/CHANGELOG.md +++ b/crates/provider/CHANGELOG.md @@ -5,7 +5,7 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Features @@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.6.2 +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 @@ -157,12 +157,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 -- Release 0.3.5 ### Refactor - Separate transaction builders for tx types ([#1259](https://github.com/alloy-rs/alloy/issues/1259)) +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + +- Release 0.3.5 + ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 ### Bug Fixes @@ -252,7 +257,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Bug Fixes - Fix watching already mined transactions ([#997](https://github.com/alloy-rs/alloy/issues/997)) -- Enable tls12 in rustls ([#952](https://github.com/alloy-rs/alloy/issues/952)) ### Features @@ -261,21 +265,52 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add trace_get ([#987](https://github.com/alloy-rs/alloy/issues/987)) - Add net rpc namespace ([#989](https://github.com/alloy-rs/alloy/issues/989)) - Add missing debug_* rpc methods ([#986](https://github.com/alloy-rs/alloy/issues/986)) -- Add trace_filter method ([#946](https://github.com/alloy-rs/alloy/issues/946)) ### Miscellaneous Tasks - Release 0.1.4 - [provider] Simplify nonce filler ([#976](https://github.com/alloy-rs/alloy/issues/976)) -- Release 0.1.3 -- Nightly clippy ([#947](https://github.com/alloy-rs/alloy/issues/947)) ### Testing - Fix flaky anvil test ([#992](https://github.com/alloy-rs/alloy/issues/992)) +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Bug Fixes + +- Enable tls12 in rustls ([#952](https://github.com/alloy-rs/alloy/issues/952)) + +### Features + +- Add trace_filter method ([#946](https://github.com/alloy-rs/alloy/issues/946)) + +### Miscellaneous Tasks + +- Release 0.1.3 +- Nightly clippy ([#947](https://github.com/alloy-rs/alloy/issues/947)) + ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Update get_balance docs ([#938](https://github.com/alloy-rs/alloy/issues/938)) +- Touch up docs, TODOs ([#918](https://github.com/alloy-rs/alloy/issues/918)) +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Features + +- Add trace_raw_transaction and trace_replay_block_transactions ([#925](https://github.com/alloy-rs/alloy/issues/925)) +- [provider] Support ethCall optional blockId serialization ([#900](https://github.com/alloy-rs/alloy/issues/900)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Bug Fixes - Downgrade tokio-tungstenite ([#881](https://github.com/alloy-rs/alloy/issues/881)) @@ -305,9 +340,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Documentation -- Update get_balance docs ([#938](https://github.com/alloy-rs/alloy/issues/938)) -- Touch up docs, TODOs ([#918](https://github.com/alloy-rs/alloy/issues/918)) -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - [provider] Add examples to `raw_request{,dyn}` ([#486](https://github.com/alloy-rs/alloy/issues/486)) - Add aliases to `get_transaction_count` ([#420](https://github.com/alloy-rs/alloy/issues/420)) - More docs in `alloy-providers` ([#281](https://github.com/alloy-rs/alloy/issues/281)) @@ -315,8 +347,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Features -- Add trace_raw_transaction and trace_replay_block_transactions ([#925](https://github.com/alloy-rs/alloy/issues/925)) -- [provider] Support ethCall optional blockId serialization ([#900](https://github.com/alloy-rs/alloy/issues/900)) - Add trace_replay_transaction ([#908](https://github.com/alloy-rs/alloy/issues/908)) - Move `{,With}OtherFields` to serde crate ([#892](https://github.com/alloy-rs/alloy/issues/892)) - [alloy] Add `"full"` feature flag ([#877](https://github.com/alloy-rs/alloy/issues/877)) @@ -366,9 +396,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [clippy] Apply lint suggestions ([#903](https://github.com/alloy-rs/alloy/issues/903)) - [other] Use type aliases where possible to improve clarity ([#859](https://github.com/alloy-rs/alloy/issues/859)) - [provider] Reorder methods in `Provider` trait ([#863](https://github.com/alloy-rs/alloy/issues/863)) diff --git a/crates/pubsub/CHANGELOG.md b/crates/pubsub/CHANGELOG.md index f62b533f127..d77eb731aee 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.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Miscellaneous Tasks @@ -77,6 +83,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -122,18 +133,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Miscellaneous Tasks + - Release 0.1.3 - Nightly clippy ([#947](https://github.com/alloy-rs/alloy/issues/947)) ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Bug Fixes - [pubsub] Handle subscription response on reconnects ([#105](https://github.com/alloy-rs/alloy/issues/105)) ([#107](https://github.com/alloy-rs/alloy/issues/107)) ### Documentation -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - Update descriptions and top level summary ([#128](https://github.com/alloy-rs/alloy/issues/128)) - Fix some backticks - Resolve broken links @@ -149,9 +176,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [clippy] Apply lint suggestions ([#903](https://github.com/alloy-rs/alloy/issues/903)) - Clippy, warnings ([#504](https://github.com/alloy-rs/alloy/issues/504)) - Use `impl Future` in `PubSubConnect` ([#218](https://github.com/alloy-rs/alloy/issues/218)) diff --git a/crates/rpc-client/CHANGELOG.md b/crates/rpc-client/CHANGELOG.md index 3dd7d13bca1..55bec989d4e 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.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Miscellaneous Tasks @@ -107,6 +113,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -165,10 +176,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Touch up docs, TODOs ([#918](https://github.com/alloy-rs/alloy/issues/918)) +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Bug Fixes - Correctly parse IPC sockets in builtin connections ([#522](https://github.com/alloy-rs/alloy/issues/522)) @@ -188,8 +217,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Documentation -- Touch up docs, TODOs ([#918](https://github.com/alloy-rs/alloy/issues/918)) -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - Move rpc client from transport readme ([#782](https://github.com/alloy-rs/alloy/issues/782)) - Update descriptions and top level summary ([#128](https://github.com/alloy-rs/alloy/issues/128)) @@ -210,9 +237,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [other] Use type aliases where possible to improve clarity ([#859](https://github.com/alloy-rs/alloy/issues/859)) - [general] Add CI workflow for Windows + fix IPC test ([#642](https://github.com/alloy-rs/alloy/issues/642)) - Rm PathBuf import ([#533](https://github.com/alloy-rs/alloy/issues/533)) diff --git a/crates/rpc-types-admin/CHANGELOG.md b/crates/rpc-types-admin/CHANGELOG.md index 8bbd14cdc96..638f6b38bd1 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.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Miscellaneous Tasks @@ -74,6 +80,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -122,6 +133,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 @@ -137,6 +153,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) - Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Refactor - [rpc] Extract `admin` and `txpool` into their respective crate ([#898](https://github.com/alloy-rs/alloy/issues/898)) diff --git a/crates/rpc-types-anvil/CHANGELOG.md b/crates/rpc-types-anvil/CHANGELOG.md index 8bf2c18ae37..25da2bbbdac 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.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Miscellaneous Tasks @@ -78,6 +84,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -117,6 +128,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 @@ -129,9 +145,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Features - [rpc-types-anvil] Add `Index`, fix compatibility ([#931](https://github.com/alloy-rs/alloy/issues/931)) -- [serde] Deprecate individual num::* for a generic `quantity` module ([#855](https://github.com/alloy-rs/alloy/issues/855)) -- [rpc] Add remaining anvil rpc methods to provider ([#831](https://github.com/alloy-rs/alloy/issues/831)) -- Add rpc-types-anvil ([#526](https://github.com/alloy-rs/alloy/issues/526)) ### Miscellaneous Tasks @@ -139,6 +152,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [rpc-types] Remove duplicate `Index` definition in `rpc-types-anvil` in favor of the one in `rpc-types-eth` ([#943](https://github.com/alloy-rs/alloy/issues/943)) - Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) - Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + +### Features + +- [serde] Deprecate individual num::* for a generic `quantity` module ([#855](https://github.com/alloy-rs/alloy/issues/855)) +- [rpc] Add remaining anvil rpc methods to provider ([#831](https://github.com/alloy-rs/alloy/issues/831)) +- Add rpc-types-anvil ([#526](https://github.com/alloy-rs/alloy/issues/526)) + +### Miscellaneous Tasks + - [other] Use type aliases where possible to improve clarity ([#859](https://github.com/alloy-rs/alloy/issues/859)) - [docs] Crate completeness and fix typos ([#861](https://github.com/alloy-rs/alloy/issues/861)) - [docs] Add doc aliases ([#843](https://github.com/alloy-rs/alloy/issues/843)) diff --git a/crates/rpc-types-beacon/CHANGELOG.md b/crates/rpc-types-beacon/CHANGELOG.md index 5f8a446bce1..397167c2fa4 100644 --- a/crates/rpc-types-beacon/CHANGELOG.md +++ b/crates/rpc-types-beacon/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.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Miscellaneous Tasks @@ -99,6 +105,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -157,6 +168,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 @@ -166,6 +182,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Touch up docs, TODOs ([#918](https://github.com/alloy-rs/alloy/issues/918)) - Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Features - Relay rpc types ([#758](https://github.com/alloy-rs/alloy/issues/758)) @@ -176,9 +200,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - Add rpc types beacon pkg description - [docs] Crate completeness and fix typos ([#861](https://github.com/alloy-rs/alloy/issues/861)) diff --git a/crates/rpc-types-debug/CHANGELOG.md b/crates/rpc-types-debug/CHANGELOG.md index 3ceaca6b4c4..470d31c1ab5 100644 --- a/crates/rpc-types-debug/CHANGELOG.md +++ b/crates/rpc-types-debug/CHANGELOG.md @@ -5,11 +5,11 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Miscellaneous Tasks -- Release 0.6.2 +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 @@ -84,6 +84,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Release 0.3.6 - [rpc] Rename witness fields ([#1293](https://github.com/alloy-rs/alloy/issues/1293)) + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 diff --git a/crates/rpc-types-engine/CHANGELOG.md b/crates/rpc-types-engine/CHANGELOG.md index 300e8cd0015..12ede5e2162 100644 --- a/crates/rpc-types-engine/CHANGELOG.md +++ b/crates/rpc-types-engine/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.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Miscellaneous Tasks @@ -102,10 +108,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.3.6](https://github.com/alloy-rs/alloy/releases/tag/v0.3.6) - 2024-09-18 -### Bug Fixes - -- Add missing conversion ([#1287](https://github.com/alloy-rs/alloy/issues/1287)) - ### Features - Add block num hash helper ([#1304](https://github.com/alloy-rs/alloy/issues/1304)) @@ -114,6 +116,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Bug Fixes + +- Add missing conversion ([#1287](https://github.com/alloy-rs/alloy/issues/1287)) + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -189,11 +200,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Miscellaneous Tasks + - Release 0.1.3 - Nightly clippy ([#947](https://github.com/alloy-rs/alloy/issues/947)) ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Touch up docs, TODOs ([#918](https://github.com/alloy-rs/alloy/issues/918)) +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Bug Fixes - Correct exitV1 type ([#567](https://github.com/alloy-rs/alloy/issues/567)) @@ -203,11 +232,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [deps] Bump all ([#864](https://github.com/alloy-rs/alloy/issues/864)) - Bump jsonrpsee 0.22 ([#467](https://github.com/alloy-rs/alloy/issues/467)) -### Documentation - -- Touch up docs, TODOs ([#918](https://github.com/alloy-rs/alloy/issues/918)) -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - ### Features - [rpc] Split off `eth` namespace in `alloy-rpc-types` to `alloy-rpc-types-eth` ([#847](https://github.com/alloy-rs/alloy/issues/847)) @@ -226,9 +250,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [clippy] Apply lint suggestions ([#903](https://github.com/alloy-rs/alloy/issues/903)) - [docs] Add doc aliases ([#843](https://github.com/alloy-rs/alloy/issues/843)) - Add engine_getClientVersionV1 ([#823](https://github.com/alloy-rs/alloy/issues/823)) diff --git a/crates/rpc-types-eth/CHANGELOG.md b/crates/rpc-types-eth/CHANGELOG.md index c32c99e2dc8..a8301a3b3a8 100644 --- a/crates/rpc-types-eth/CHANGELOG.md +++ b/crates/rpc-types-eth/CHANGELOG.md @@ -5,13 +5,21 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Bug Fixes - Serde for transactions ([#1630](https://github.com/alloy-rs/alloy/issues/1630)) - [`rpc-types`] `FeeHistory` deser ([#1629](https://github.com/alloy-rs/alloy/issues/1629)) +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + +### Other + +- Add trait method `Transaction::is_dynamic_fee` ([#1638](https://github.com/alloy-rs/alloy/issues/1638)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Bug Fixes @@ -169,6 +177,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -297,26 +310,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add helper to set both input and data fields ([#1019](https://github.com/alloy-rs/alloy/issues/1019)) - [rpc-types-eth] Add more utils to `TransactionIndex` ([#1007](https://github.com/alloy-rs/alloy/issues/1007)) - Add into transactions iterator ([#984](https://github.com/alloy-rs/alloy/issues/984)) -- Add eip-7702 helpers ([#950](https://github.com/alloy-rs/alloy/issues/950)) -- [contract] Implement Filter's builder methods on Event ([#960](https://github.com/alloy-rs/alloy/issues/960)) ### Miscellaneous Tasks - Release 0.1.4 - Convert rcp-types-eth block Header to consensus Header ([#1014](https://github.com/alloy-rs/alloy/issues/1014)) - Make wrapped index value pub ([#988](https://github.com/alloy-rs/alloy/issues/988)) -- Release 0.1.3 -- Nightly clippy ([#947](https://github.com/alloy-rs/alloy/issues/947)) ### Other - Add range test in `FilterBlockOption` ([#939](https://github.com/alloy-rs/alloy/issues/939)) -## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 -### Dependencies +### Features -- [deps] Bump all ([#864](https://github.com/alloy-rs/alloy/issues/864)) +- Add eip-7702 helpers ([#950](https://github.com/alloy-rs/alloy/issues/950)) +- [contract] Implement Filter's builder methods on Event ([#960](https://github.com/alloy-rs/alloy/issues/960)) + +### Miscellaneous Tasks + +- Release 0.1.3 +- Nightly clippy ([#947](https://github.com/alloy-rs/alloy/issues/947)) + +## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 ### Documentation @@ -328,10 +345,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add `is_` and `as_` utils for `FilterBlockOption` ([#927](https://github.com/alloy-rs/alloy/issues/927)) - Add utils to `ValueOrArray` ([#924](https://github.com/alloy-rs/alloy/issues/924)) - Add `is_` utils to `FilterChanges` ([#923](https://github.com/alloy-rs/alloy/issues/923)) -- Integrate `EvmOverrides` to rpc types ([#906](https://github.com/alloy-rs/alloy/issues/906)) -- Add getter methods for `FilterChanges` ([#899](https://github.com/alloy-rs/alloy/issues/899)) -- Move `{,With}OtherFields` to serde crate ([#892](https://github.com/alloy-rs/alloy/issues/892)) -- [rpc] Split off `eth` namespace in `alloy-rpc-types` to `alloy-rpc-types-eth` ([#847](https://github.com/alloy-rs/alloy/issues/847)) ### Miscellaneous Tasks @@ -339,6 +352,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [rpc-types] Remove duplicate `Index` definition in `rpc-types-anvil` in favor of the one in `rpc-types-eth` ([#943](https://github.com/alloy-rs/alloy/issues/943)) - Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) - Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + +### Dependencies + +- [deps] Bump all ([#864](https://github.com/alloy-rs/alloy/issues/864)) + +### Features + +- Integrate `EvmOverrides` to rpc types ([#906](https://github.com/alloy-rs/alloy/issues/906)) +- Add getter methods for `FilterChanges` ([#899](https://github.com/alloy-rs/alloy/issues/899)) +- Move `{,With}OtherFields` to serde crate ([#892](https://github.com/alloy-rs/alloy/issues/892)) +- [rpc] Split off `eth` namespace in `alloy-rpc-types` to `alloy-rpc-types-eth` ([#847](https://github.com/alloy-rs/alloy/issues/847)) + +### Miscellaneous Tasks + - Rm unused txtype mod ([#879](https://github.com/alloy-rs/alloy/issues/879)) - [other] Use type aliases where possible to improve clarity ([#859](https://github.com/alloy-rs/alloy/issues/859)) - [docs] Crate completeness and fix typos ([#861](https://github.com/alloy-rs/alloy/issues/861)) diff --git a/crates/rpc-types-mev/CHANGELOG.md b/crates/rpc-types-mev/CHANGELOG.md index d7278a77605..bda869c28a4 100644 --- a/crates/rpc-types-mev/CHANGELOG.md +++ b/crates/rpc-types-mev/CHANGELOG.md @@ -5,11 +5,11 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Miscellaneous Tasks -- Release 0.6.2 +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 @@ -94,6 +94,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 diff --git a/crates/rpc-types-trace/CHANGELOG.md b/crates/rpc-types-trace/CHANGELOG.md index d39b2a374b9..c81a02262cc 100644 --- a/crates/rpc-types-trace/CHANGELOG.md +++ b/crates/rpc-types-trace/CHANGELOG.md @@ -5,11 +5,11 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Miscellaneous Tasks -- Release 0.6.2 +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 @@ -126,6 +126,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -210,6 +215,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 @@ -222,6 +232,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Features - Add TryFrom for GethTrace for all inner variants ([#933](https://github.com/alloy-rs/alloy/issues/933)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + +### Features + - [rpc] Split off `eth` namespace in `alloy-rpc-types` to `alloy-rpc-types-eth` ([#847](https://github.com/alloy-rs/alloy/issues/847)) - [serde] Deprecate individual num::* for a generic `quantity` module ([#855](https://github.com/alloy-rs/alloy/issues/855)) - [rpc] Add more helpers for `TraceResult` ([#815](https://github.com/alloy-rs/alloy/issues/815)) @@ -231,9 +252,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [other] Use type aliases where possible to improve clarity ([#859](https://github.com/alloy-rs/alloy/issues/859)) - [docs] Crate completeness and fix typos ([#861](https://github.com/alloy-rs/alloy/issues/861)) - [docs] Add doc aliases ([#843](https://github.com/alloy-rs/alloy/issues/843)) diff --git a/crates/rpc-types-txpool/CHANGELOG.md b/crates/rpc-types-txpool/CHANGELOG.md index 5f562bd1910..bb30493491a 100644 --- a/crates/rpc-types-txpool/CHANGELOG.md +++ b/crates/rpc-types-txpool/CHANGELOG.md @@ -5,11 +5,11 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Miscellaneous Tasks -- Release 0.6.2 +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 @@ -99,6 +99,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -142,6 +147,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 @@ -157,6 +167,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) - Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Refactor - [rpc] Extract `admin` and `txpool` into their respective crate ([#898](https://github.com/alloy-rs/alloy/issues/898)) diff --git a/crates/rpc-types/CHANGELOG.md b/crates/rpc-types/CHANGELOG.md index 75c158acde4..eea4b60e4c6 100644 --- a/crates/rpc-types/CHANGELOG.md +++ b/crates/rpc-types/CHANGELOG.md @@ -5,11 +5,11 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Miscellaneous Tasks -- Release 0.6.2 +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 @@ -88,6 +88,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -158,6 +163,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Touch up docs, TODOs ([#918](https://github.com/alloy-rs/alloy/issues/918)) +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Use 'dep:' syntax in rpc-types ([#921](https://github.com/alloy-rs/alloy/issues/921)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Bug Fixes - [rpc-types] Additionally export on `eth` namespace as well as * ([#866](https://github.com/alloy-rs/alloy/issues/866)) @@ -199,8 +218,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Documentation -- Touch up docs, TODOs ([#918](https://github.com/alloy-rs/alloy/issues/918)) -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - Update txtype docs ([#497](https://github.com/alloy-rs/alloy/issues/497)) - [provider] Add examples to `raw_request{,dyn}` ([#486](https://github.com/alloy-rs/alloy/issues/486)) - Update incorrect comment ([#329](https://github.com/alloy-rs/alloy/issues/329)) @@ -256,10 +273,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Use 'dep:' syntax in rpc-types ([#921](https://github.com/alloy-rs/alloy/issues/921)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [docs] Add doc aliases ([#843](https://github.com/alloy-rs/alloy/issues/843)) - Add Into for WithOtherFields in rpc types ([#813](https://github.com/alloy-rs/alloy/issues/813)) - Fix remaining warnings, add TODO for proptest-derive ([#819](https://github.com/alloy-rs/alloy/issues/819)) diff --git a/crates/serde/CHANGELOG.md b/crates/serde/CHANGELOG.md index 73352565231..e15e733d176 100644 --- a/crates/serde/CHANGELOG.md +++ b/crates/serde/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.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Miscellaneous Tasks @@ -101,6 +107,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -142,13 +153,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 +### Miscellaneous Tasks + +- Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + ### Bug Fixes - Deserialization of null storage keys in AccessListItem ([#955](https://github.com/alloy-rs/alloy/issues/955)) ### Miscellaneous Tasks -- Release 0.1.4 - Release 0.1.3 - Nightly clippy ([#947](https://github.com/alloy-rs/alloy/issues/947)) @@ -158,6 +174,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Features - Move `{,With}OtherFields` to serde crate ([#892](https://github.com/alloy-rs/alloy/issues/892)) @@ -169,9 +193,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [clippy] Apply lint suggestions ([#903](https://github.com/alloy-rs/alloy/issues/903)) - [other] Use type aliases where possible to improve clarity ([#859](https://github.com/alloy-rs/alloy/issues/859)) - Improve hyper http error messages ([#469](https://github.com/alloy-rs/alloy/issues/469)) diff --git a/crates/signer-aws/CHANGELOG.md b/crates/signer-aws/CHANGELOG.md index 8b14f4a21dd..961d77e5e31 100644 --- a/crates/signer-aws/CHANGELOG.md +++ b/crates/signer-aws/CHANGELOG.md @@ -5,11 +5,11 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Miscellaneous Tasks -- Release 0.6.2 +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 @@ -80,6 +80,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -129,16 +134,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Dependencies - Bump core ([#372](https://github.com/alloy-rs/alloy/issues/372)) - [deps] Update all dependencies ([#258](https://github.com/alloy-rs/alloy/issues/258)) - Alloy-consensus crate ([#83](https://github.com/alloy-rs/alloy/issues/83)) -### Documentation - -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - ### Features - `std` feature flag for `alloy-consensus` ([#461](https://github.com/alloy-rs/alloy/issues/461)) @@ -148,9 +161,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [docs] Add doc aliases ([#843](https://github.com/alloy-rs/alloy/issues/843)) - [`signers`] Fix errors from primitives upgrade, avoid passing `B256` by val ([#152](https://github.com/alloy-rs/alloy/issues/152)) diff --git a/crates/signer-gcp/CHANGELOG.md b/crates/signer-gcp/CHANGELOG.md index 0f89a5de6db..42221b25249 100644 --- a/crates/signer-gcp/CHANGELOG.md +++ b/crates/signer-gcp/CHANGELOG.md @@ -5,11 +5,11 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Miscellaneous Tasks -- Release 0.6.2 +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 @@ -80,6 +80,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -135,14 +140,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 -### Bug Fixes - -- Add "google-longrunning" ([#839](https://github.com/alloy-rs/alloy/issues/839)) - ### Documentation - Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + +### Bug Fixes + +- Add "google-longrunning" ([#839](https://github.com/alloy-rs/alloy/issues/839)) + ### Features - `std` feature flag for `alloy-consensus` ([#461](https://github.com/alloy-rs/alloy/issues/461)) @@ -151,9 +164,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [other] Use type aliases where possible to improve clarity ([#859](https://github.com/alloy-rs/alloy/issues/859)) - [docs] Crate completeness and fix typos ([#861](https://github.com/alloy-rs/alloy/issues/861)) - [docs] Add doc aliases ([#843](https://github.com/alloy-rs/alloy/issues/843)) diff --git a/crates/signer-ledger/CHANGELOG.md b/crates/signer-ledger/CHANGELOG.md index 840bc7d3550..000b6286565 100644 --- a/crates/signer-ledger/CHANGELOG.md +++ b/crates/signer-ledger/CHANGELOG.md @@ -5,11 +5,11 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Miscellaneous Tasks -- Release 0.6.2 +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 @@ -84,6 +84,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -139,6 +144,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Bug Fixes - Implement `sign_dynamic_typed_data` for ledger signers ([#701](https://github.com/alloy-rs/alloy/issues/701)) @@ -150,10 +167,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [deps] Update all dependencies ([#258](https://github.com/alloy-rs/alloy/issues/258)) - Alloy-consensus crate ([#83](https://github.com/alloy-rs/alloy/issues/83)) -### Documentation - -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - ### Features - `std` feature flag for `alloy-consensus` ([#461](https://github.com/alloy-rs/alloy/issues/461)) @@ -163,9 +176,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [docs] Add doc aliases ([#843](https://github.com/alloy-rs/alloy/issues/843)) - [general] Add CI workflow for Windows + fix IPC test ([#642](https://github.com/alloy-rs/alloy/issues/642)) - Clean up Display impls ([#222](https://github.com/alloy-rs/alloy/issues/222)) diff --git a/crates/signer-local/CHANGELOG.md b/crates/signer-local/CHANGELOG.md index 1be2bbeec67..f61cec14a32 100644 --- a/crates/signer-local/CHANGELOG.md +++ b/crates/signer-local/CHANGELOG.md @@ -5,11 +5,11 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Miscellaneous Tasks -- Release 0.6.2 +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 @@ -85,6 +85,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -131,6 +136,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 @@ -146,6 +156,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) - Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Refactor - [signers] Use `signer` for single credentials and `wallet` for credential stores ([#883](https://github.com/alloy-rs/alloy/issues/883)) diff --git a/crates/signer-trezor/CHANGELOG.md b/crates/signer-trezor/CHANGELOG.md index 9fcade8b5d3..b8266dfa965 100644 --- a/crates/signer-trezor/CHANGELOG.md +++ b/crates/signer-trezor/CHANGELOG.md @@ -5,11 +5,11 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.6.2) - 2024-11-07 +## [0.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 ### Miscellaneous Tasks -- Release 0.6.2 +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 @@ -89,6 +89,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -150,16 +155,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 -### Dependencies - -- [deps] Bump trezor-client ([#206](https://github.com/alloy-rs/alloy/issues/206)) -- Alloy-consensus crate ([#83](https://github.com/alloy-rs/alloy/issues/83)) - ### Documentation - Touch up docs, TODOs ([#918](https://github.com/alloy-rs/alloy/issues/918)) - Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + +### Dependencies + +- [deps] Bump trezor-client ([#206](https://github.com/alloy-rs/alloy/issues/206)) +- Alloy-consensus crate ([#83](https://github.com/alloy-rs/alloy/issues/83)) + ### Features - [rpc] Split off `eth` namespace in `alloy-rpc-types` to `alloy-rpc-types-eth` ([#847](https://github.com/alloy-rs/alloy/issues/847)) @@ -169,9 +182,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [docs] Crate completeness and fix typos ([#861](https://github.com/alloy-rs/alloy/issues/861)) - [docs] Add doc aliases ([#843](https://github.com/alloy-rs/alloy/issues/843)) - Fix warnings, check-cfg ([#776](https://github.com/alloy-rs/alloy/issues/776)) diff --git a/crates/signer/CHANGELOG.md b/crates/signer/CHANGELOG.md index bef0d242f3a..3ce29591c92 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.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Miscellaneous Tasks @@ -78,6 +84,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -121,10 +132,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Touch up docs, TODOs ([#918](https://github.com/alloy-rs/alloy/issues/918)) +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Bug Fixes - Implement `sign_dynamic_typed_data` for ledger signers ([#701](https://github.com/alloy-rs/alloy/issues/701)) @@ -137,8 +166,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Documentation -- Touch up docs, TODOs ([#918](https://github.com/alloy-rs/alloy/issues/918)) -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - Update signer documentation ([#180](https://github.com/alloy-rs/alloy/issues/180)) ### Features @@ -153,9 +180,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [other] Use type aliases where possible to improve clarity ([#859](https://github.com/alloy-rs/alloy/issues/859)) - Remove unused imports ([#224](https://github.com/alloy-rs/alloy/issues/224)) - [`signers`] Fix errors from primitives upgrade, avoid passing `B256` by val ([#152](https://github.com/alloy-rs/alloy/issues/152)) diff --git a/crates/transport-http/CHANGELOG.md b/crates/transport-http/CHANGELOG.md index 1a185bd49d1..3f2c9c3e44a 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.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Miscellaneous Tasks @@ -78,6 +84,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -117,10 +128,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Bug Fixes - Enable reqwest default-tls feature in transport-http ([#248](https://github.com/alloy-rs/alloy/issues/248)) @@ -132,7 +160,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Documentation -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - Resolve broken links ### Features @@ -147,9 +174,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [docs] Crate completeness and fix typos ([#861](https://github.com/alloy-rs/alloy/issues/861)) - Improve hyper http error messages ([#469](https://github.com/alloy-rs/alloy/issues/469)) - Rm unused file ([#234](https://github.com/alloy-rs/alloy/issues/234)) diff --git a/crates/transport-ipc/CHANGELOG.md b/crates/transport-ipc/CHANGELOG.md index 8ea019b55d0..3bed60243e2 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.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Miscellaneous Tasks @@ -70,6 +76,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -106,17 +117,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 +### Miscellaneous Tasks + +- Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + ### Bug Fixes - Continue reading ipc on large data ([#958](https://github.com/alloy-rs/alloy/issues/958)) ### Miscellaneous Tasks -- Release 0.1.4 - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Bug Fixes - Continue reading ipc on data error ([#605](https://github.com/alloy-rs/alloy/issues/605)) @@ -129,10 +157,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [deps] Update all dependencies ([#258](https://github.com/alloy-rs/alloy/issues/258)) - Alloy-consensus crate ([#83](https://github.com/alloy-rs/alloy/issues/83)) -### Documentation - -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - ### Features - Add `alloy` prelude crate ([#203](https://github.com/alloy-rs/alloy/issues/203)) @@ -140,9 +164,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - Unused feature - B'a' ([#609](https://github.com/alloy-rs/alloy/issues/609)) - Use `impl Future` in `PubSubConnect` ([#218](https://github.com/alloy-rs/alloy/issues/218)) diff --git a/crates/transport-ws/CHANGELOG.md b/crates/transport-ws/CHANGELOG.md index 3828250b6d8..ac58865f7fe 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.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Miscellaneous Tasks @@ -80,6 +86,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -119,10 +130,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Bug Fixes - Downgrade tokio-tungstenite ([#881](https://github.com/alloy-rs/alloy/issues/881)) @@ -135,7 +163,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Documentation -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - Resolve broken links ### Features @@ -144,9 +171,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - Tweak tracing in ws transport ([#333](https://github.com/alloy-rs/alloy/issues/333)) - Use `impl Future` in `PubSubConnect` ([#218](https://github.com/alloy-rs/alloy/issues/218)) - Clean up tracing macro uses ([#154](https://github.com/alloy-rs/alloy/issues/154)) diff --git a/crates/transport/CHANGELOG.md b/crates/transport/CHANGELOG.md index 6b52404f3f2..d508a2f41c1 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.6.3](https://github.com/alloy-rs/alloy/releases/tag/v0.6.3) - 2024-11-12 + +### Miscellaneous Tasks + +- Release 0.6.2 ([#1632](https://github.com/alloy-rs/alloy/issues/1632)) + ## [0.6.1](https://github.com/alloy-rs/alloy/releases/tag/v0.6.1) - 2024-11-06 ### Miscellaneous Tasks @@ -83,6 +89,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.3.6 + +## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13 + +### Miscellaneous Tasks + - Release 0.3.5 ## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13 @@ -136,10 +147,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks - Release 0.1.4 + +## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 +### Documentation + +- Touch up docs, TODOs ([#918](https://github.com/alloy-rs/alloy/issues/918)) +- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) + +### Miscellaneous Tasks + +- Release 0.1.2 +- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) +- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) + +## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17 + ### Bug Fixes - Include auth token in display ([#772](https://github.com/alloy-rs/alloy/issues/772)) @@ -158,8 +187,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Documentation -- Touch up docs, TODOs ([#918](https://github.com/alloy-rs/alloy/issues/918)) -- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914)) - Move rpc client from transport readme ([#782](https://github.com/alloy-rs/alloy/issues/782)) - Do not accept grammar prs ([#310](https://github.com/alloy-rs/alloy/issues/310)) - Update descriptions and top level summary ([#128](https://github.com/alloy-rs/alloy/issues/128)) @@ -177,9 +204,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks -- Release 0.1.2 -- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922)) -- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917)) - [docs] Crate completeness and fix typos ([#861](https://github.com/alloy-rs/alloy/issues/861)) - Remove Sealed in Transport definition ([#551](https://github.com/alloy-rs/alloy/issues/551)) - Remove unused imports ([#224](https://github.com/alloy-rs/alloy/issues/224))