diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d5440fabbb..86a3e1f6b24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,38 @@ 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.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +### Features + +- Remove T: Transport from public APIs ([#1859](https://github.com/alloy-rs/alloy/issues/1859)) +- Add match_versioned_hashes ([#1882](https://github.com/alloy-rs/alloy/issues/1882)) +- Add RecoveredTx::try_map_transaction ([#1885](https://github.com/alloy-rs/alloy/issues/1885)) +- Add additional conversion fn ([#1883](https://github.com/alloy-rs/alloy/issues/1883)) +- Add additional conversion fn ([#1881](https://github.com/alloy-rs/alloy/issues/1881)) +- Add missing helper fns ([#1880](https://github.com/alloy-rs/alloy/issues/1880)) + +### Miscellaneous Tasks + +- Improve FromStr for `BlockNumberOrTag` to be case-insensitive ([#1891](https://github.com/alloy-rs/alloy/issues/1891)) +- Shift std::error impls to core ([#1888](https://github.com/alloy-rs/alloy/issues/1888)) +- Use core::error for blob validation error ([#1887](https://github.com/alloy-rs/alloy/issues/1887)) +- Use safe get api ([#1886](https://github.com/alloy-rs/alloy/issues/1886)) +- Add storage_slots helper ([#1884](https://github.com/alloy-rs/alloy/issues/1884)) + +### Refactor + +- Use the params struct in more places ([#1892](https://github.com/alloy-rs/alloy/issues/1892)) + +### Testing + +- Fix warnings on windows ([#1895](https://github.com/alloy-rs/alloy/issues/1895)) +- Add parity test ([#1889](https://github.com/alloy-rs/alloy/issues/1889)) + ## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 ### Bug Fixes @@ -19,6 +51,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add block to payloadv1 ([#1875](https://github.com/alloy-rs/alloy/issues/1875)) - Add block to payloadbodyv1 ([#1874](https://github.com/alloy-rs/alloy/issues/1874)) +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Features diff --git a/Cargo.toml b/Cargo.toml index c2e9433218e..3e468adfdf8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.9.2" +version = "0.10.0" edition = "2021" rust-version = "1.81" authors = ["Alloy Contributors"] @@ -31,42 +31,42 @@ option-if-let-else = "warn" redundant-clone = "warn" [workspace.dependencies] -alloy-consensus = { version = "0.9", path = "crates/consensus", default-features = false } -alloy-consensus-any = { version = "0.9", path = "crates/consensus-any", default-features = false } -alloy-contract = { version = "0.9", path = "crates/contract", default-features = false } -alloy-eips = { version = "0.9", path = "crates/eips", default-features = false } -alloy-eip7547 = { version = "0.9", path = "crates/eip7547", default-features = false } -alloy-genesis = { version = "0.9", path = "crates/genesis", default-features = false } -alloy-json-rpc = { version = "0.9", path = "crates/json-rpc", default-features = false } -alloy-network = { version = "0.9", path = "crates/network", default-features = false } -alloy-network-primitives = { version = "0.9", path = "crates/network-primitives", default-features = false } -alloy-node-bindings = { version = "0.9", path = "crates/node-bindings", default-features = false } -alloy-provider = { version = "0.9", path = "crates/provider", default-features = false } -alloy-pubsub = { version = "0.9", path = "crates/pubsub", default-features = false } -alloy-rpc-client = { version = "0.9", path = "crates/rpc-client", default-features = false } -alloy-rpc-types-admin = { version = "0.9", path = "crates/rpc-types-admin", default-features = false } -alloy-rpc-types-anvil = { version = "0.9", path = "crates/rpc-types-anvil", default-features = false } -alloy-rpc-types-any = { version = "0.9", path = "crates/rpc-types-any", default-features = false } -alloy-rpc-types-beacon = { version = "0.9", path = "crates/rpc-types-beacon", default-features = false } -alloy-rpc-types-debug = { version = "0.9", path = "crates/rpc-types-debug", default-features = false } -alloy-rpc-types-engine = { version = "0.9", path = "crates/rpc-types-engine", default-features = false } -alloy-rpc-types-eth = { version = "0.9", path = "crates/rpc-types-eth", default-features = false } -alloy-rpc-types-mev = { version = "0.9", path = "crates/rpc-types-mev", default-features = false } -alloy-rpc-types-trace = { version = "0.9", path = "crates/rpc-types-trace", default-features = false } -alloy-rpc-types-txpool = { version = "0.9", path = "crates/rpc-types-txpool", default-features = false } -alloy-rpc-types = { version = "0.9", path = "crates/rpc-types", default-features = false } -alloy-serde = { version = "0.9", path = "crates/serde", default-features = false } -alloy-signer = { version = "0.9", path = "crates/signer", default-features = false } -alloy-signer-aws = { version = "0.9", path = "crates/signer-aws", default-features = false } -alloy-signer-gcp = { version = "0.9", path = "crates/signer-gcp", default-features = false } -alloy-signer-ledger = { version = "0.9", path = "crates/signer-ledger", default-features = false } -alloy-signer-local = { version = "0.9", path = "crates/signer-local", default-features = false } -alloy-signer-trezor = { version = "0.9", path = "crates/signer-trezor", default-features = false } -alloy-transport = { version = "0.9", path = "crates/transport", default-features = false } -alloy-transport-http = { version = "0.9", path = "crates/transport-http", default-features = false } -alloy-transport-ipc = { version = "0.9", path = "crates/transport-ipc", default-features = false } -alloy-transport-ws = { version = "0.9", path = "crates/transport-ws", default-features = false } -alloy-eip5792 = { version = "0.9", path = "crates/eip5792", default-features = false } +alloy-consensus = { version = "0.10", path = "crates/consensus", default-features = false } +alloy-consensus-any = { version = "0.10", path = "crates/consensus-any", default-features = false } +alloy-contract = { version = "0.10", path = "crates/contract", default-features = false } +alloy-eips = { version = "0.10", path = "crates/eips", default-features = false } +alloy-eip7547 = { version = "0.10", path = "crates/eip7547", default-features = false } +alloy-genesis = { version = "0.10", path = "crates/genesis", default-features = false } +alloy-json-rpc = { version = "0.10", path = "crates/json-rpc", default-features = false } +alloy-network = { version = "0.10", path = "crates/network", default-features = false } +alloy-network-primitives = { version = "0.10", path = "crates/network-primitives", default-features = false } +alloy-node-bindings = { version = "0.10", path = "crates/node-bindings", default-features = false } +alloy-provider = { version = "0.10", path = "crates/provider", default-features = false } +alloy-pubsub = { version = "0.10", path = "crates/pubsub", default-features = false } +alloy-rpc-client = { version = "0.10", path = "crates/rpc-client", default-features = false } +alloy-rpc-types-admin = { version = "0.10", path = "crates/rpc-types-admin", default-features = false } +alloy-rpc-types-anvil = { version = "0.10", path = "crates/rpc-types-anvil", default-features = false } +alloy-rpc-types-any = { version = "0.10", path = "crates/rpc-types-any", default-features = false } +alloy-rpc-types-beacon = { version = "0.10", path = "crates/rpc-types-beacon", default-features = false } +alloy-rpc-types-debug = { version = "0.10", path = "crates/rpc-types-debug", default-features = false } +alloy-rpc-types-engine = { version = "0.10", path = "crates/rpc-types-engine", default-features = false } +alloy-rpc-types-eth = { version = "0.10", path = "crates/rpc-types-eth", default-features = false } +alloy-rpc-types-mev = { version = "0.10", path = "crates/rpc-types-mev", default-features = false } +alloy-rpc-types-trace = { version = "0.10", path = "crates/rpc-types-trace", default-features = false } +alloy-rpc-types-txpool = { version = "0.10", path = "crates/rpc-types-txpool", default-features = false } +alloy-rpc-types = { version = "0.10", path = "crates/rpc-types", default-features = false } +alloy-serde = { version = "0.10", path = "crates/serde", default-features = false } +alloy-signer = { version = "0.10", path = "crates/signer", default-features = false } +alloy-signer-aws = { version = "0.10", path = "crates/signer-aws", default-features = false } +alloy-signer-gcp = { version = "0.10", path = "crates/signer-gcp", default-features = false } +alloy-signer-ledger = { version = "0.10", path = "crates/signer-ledger", default-features = false } +alloy-signer-local = { version = "0.10", path = "crates/signer-local", default-features = false } +alloy-signer-trezor = { version = "0.10", path = "crates/signer-trezor", default-features = false } +alloy-transport = { version = "0.10", path = "crates/transport", default-features = false } +alloy-transport-http = { version = "0.10", path = "crates/transport-http", default-features = false } +alloy-transport-ipc = { version = "0.10", path = "crates/transport-ipc", default-features = false } +alloy-transport-ws = { version = "0.10", path = "crates/transport-ws", default-features = false } +alloy-eip5792 = { version = "0.10", path = "crates/eip5792", default-features = false } alloy-core = { version = "0.8.15", default-features = false } alloy-dyn-abi = { version = "0.8.15", default-features = false } diff --git a/crates/alloy/CHANGELOG.md b/crates/alloy/CHANGELOG.md index 09c3fd617a3..614cd7cbaf1 100644 --- a/crates/alloy/CHANGELOG.md +++ b/crates/alloy/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/consensus-any/CHANGELOG.md b/crates/consensus-any/CHANGELOG.md index f73cefe6268..1e80fb95086 100644 --- a/crates/consensus-any/CHANGELOG.md +++ b/crates/consensus-any/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/consensus/CHANGELOG.md b/crates/consensus/CHANGELOG.md index 8b650e9c539..94223970a08 100644 --- a/crates/consensus/CHANGELOG.md +++ b/crates/consensus/CHANGELOG.md @@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +### Features + +- Remove T: Transport from public APIs ([#1859](https://github.com/alloy-rs/alloy/issues/1859)) +- Add RecoveredTx::try_map_transaction ([#1885](https://github.com/alloy-rs/alloy/issues/1885)) +- Add missing helper fns ([#1880](https://github.com/alloy-rs/alloy/issues/1880)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Features diff --git a/crates/contract/CHANGELOG.md b/crates/contract/CHANGELOG.md index 5847f9211ab..741c626728f 100644 --- a/crates/contract/CHANGELOG.md +++ b/crates/contract/CHANGELOG.md @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +### Features + +- Remove T: Transport from public APIs ([#1859](https://github.com/alloy-rs/alloy/issues/1859)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/eip5792/CHANGELOG.md b/crates/eip5792/CHANGELOG.md index 42ebbd63e8a..29763f8daf0 100644 --- a/crates/eip5792/CHANGELOG.md +++ b/crates/eip5792/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/eip7547/CHANGELOG.md b/crates/eip7547/CHANGELOG.md index e0b80f80dad..ae48657aec6 100644 --- a/crates/eip7547/CHANGELOG.md +++ b/crates/eip7547/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/eips/CHANGELOG.md b/crates/eips/CHANGELOG.md index 005a845dcfa..8e7c1080797 100644 --- a/crates/eips/CHANGELOG.md +++ b/crates/eips/CHANGELOG.md @@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +### Features + +- Add match_versioned_hashes ([#1882](https://github.com/alloy-rs/alloy/issues/1882)) + +### Miscellaneous Tasks + +- Improve FromStr for `BlockNumberOrTag` to be case-insensitive ([#1891](https://github.com/alloy-rs/alloy/issues/1891)) +- Shift std::error impls to core ([#1888](https://github.com/alloy-rs/alloy/issues/1888)) +- Use core::error for blob validation error ([#1887](https://github.com/alloy-rs/alloy/issues/1887)) +- Use safe get api ([#1886](https://github.com/alloy-rs/alloy/issues/1886)) + ## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 ### Bug Fixes @@ -16,6 +33,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Sort and skip empty requests for hash ([#1878](https://github.com/alloy-rs/alloy/issues/1878)) +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/genesis/CHANGELOG.md b/crates/genesis/CHANGELOG.md index 02eea78b42e..65b6cb21f81 100644 --- a/crates/genesis/CHANGELOG.md +++ b/crates/genesis/CHANGELOG.md @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +### Miscellaneous Tasks + +- Add storage_slots helper ([#1884](https://github.com/alloy-rs/alloy/issues/1884)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/json-rpc/CHANGELOG.md b/crates/json-rpc/CHANGELOG.md index 8a220c3adba..356b257bfb1 100644 --- a/crates/json-rpc/CHANGELOG.md +++ b/crates/json-rpc/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/network-primitives/CHANGELOG.md b/crates/network-primitives/CHANGELOG.md index 42fdaf5cbbc..a77ed956a12 100644 --- a/crates/network-primitives/CHANGELOG.md +++ b/crates/network-primitives/CHANGELOG.md @@ -5,12 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + ## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 ### Features - Add conversions from rpc block to consensus ([#1869](https://github.com/alloy-rs/alloy/issues/1869)) +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/network/CHANGELOG.md b/crates/network/CHANGELOG.md index adf826ba64c..8dda499a5b0 100644 --- a/crates/network/CHANGELOG.md +++ b/crates/network/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/node-bindings/CHANGELOG.md b/crates/node-bindings/CHANGELOG.md index 6ed913c520a..cabcd1d7fcb 100644 --- a/crates/node-bindings/CHANGELOG.md +++ b/crates/node-bindings/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/provider/CHANGELOG.md b/crates/provider/CHANGELOG.md index 86cd0868753..46a979e2448 100644 --- a/crates/provider/CHANGELOG.md +++ b/crates/provider/CHANGELOG.md @@ -5,6 +5,30 @@ 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.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +### Features + +- Remove T: Transport from public APIs ([#1859](https://github.com/alloy-rs/alloy/issues/1859)) + +### Refactor + +- Use the params struct in more places ([#1892](https://github.com/alloy-rs/alloy/issues/1892)) + +### Testing + +- Fix warnings on windows ([#1895](https://github.com/alloy-rs/alloy/issues/1895)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/pubsub/CHANGELOG.md b/crates/pubsub/CHANGELOG.md index b498dc92a60..78095b6afc6 100644 --- a/crates/pubsub/CHANGELOG.md +++ b/crates/pubsub/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/rpc-client/CHANGELOG.md b/crates/rpc-client/CHANGELOG.md index 0072b968aca..b8c7ac734f6 100644 --- a/crates/rpc-client/CHANGELOG.md +++ b/crates/rpc-client/CHANGELOG.md @@ -5,6 +5,26 @@ 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.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +### Features + +- Remove T: Transport from public APIs ([#1859](https://github.com/alloy-rs/alloy/issues/1859)) + +### Testing + +- Fix warnings on windows ([#1895](https://github.com/alloy-rs/alloy/issues/1895)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/rpc-types-admin/CHANGELOG.md b/crates/rpc-types-admin/CHANGELOG.md index 645603ebf74..111fd1b6791 100644 --- a/crates/rpc-types-admin/CHANGELOG.md +++ b/crates/rpc-types-admin/CHANGELOG.md @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +### Features + +- Remove T: Transport from public APIs ([#1859](https://github.com/alloy-rs/alloy/issues/1859)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/rpc-types-anvil/CHANGELOG.md b/crates/rpc-types-anvil/CHANGELOG.md index 39d0119f0e3..0e217862c56 100644 --- a/crates/rpc-types-anvil/CHANGELOG.md +++ b/crates/rpc-types-anvil/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/rpc-types-any/CHANGELOG.md b/crates/rpc-types-any/CHANGELOG.md index 4b610b038a2..a28e78dffd6 100644 --- a/crates/rpc-types-any/CHANGELOG.md +++ b/crates/rpc-types-any/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/rpc-types-beacon/CHANGELOG.md b/crates/rpc-types-beacon/CHANGELOG.md index 1cb50c38b6d..85bf07fa705 100644 --- a/crates/rpc-types-beacon/CHANGELOG.md +++ b/crates/rpc-types-beacon/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/rpc-types-debug/CHANGELOG.md b/crates/rpc-types-debug/CHANGELOG.md index a78ab1004e7..abfeb1487f3 100644 --- a/crates/rpc-types-debug/CHANGELOG.md +++ b/crates/rpc-types-debug/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/rpc-types-engine/CHANGELOG.md b/crates/rpc-types-engine/CHANGELOG.md index 9ca44cbfcb9..c3f0111ccfc 100644 --- a/crates/rpc-types-engine/CHANGELOG.md +++ b/crates/rpc-types-engine/CHANGELOG.md @@ -5,6 +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.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +### Features + +- Add additional conversion fn ([#1883](https://github.com/alloy-rs/alloy/issues/1883)) +- Add additional conversion fn ([#1881](https://github.com/alloy-rs/alloy/issues/1881)) + +### Miscellaneous Tasks + +- Shift std::error impls to core ([#1888](https://github.com/alloy-rs/alloy/issues/1888)) + ## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 ### Features @@ -12,6 +27,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add block to payloadv1 ([#1875](https://github.com/alloy-rs/alloy/issues/1875)) - Add block to payloadbodyv1 ([#1874](https://github.com/alloy-rs/alloy/issues/1874)) +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/rpc-types-eth/CHANGELOG.md b/crates/rpc-types-eth/CHANGELOG.md index 7246270288f..31aeee0d0c6 100644 --- a/crates/rpc-types-eth/CHANGELOG.md +++ b/crates/rpc-types-eth/CHANGELOG.md @@ -5,12 +5,26 @@ 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.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +### Features + +- Remove T: Transport from public APIs ([#1859](https://github.com/alloy-rs/alloy/issues/1859)) + ## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 ### Features - Add conversions from rpc block to consensus ([#1869](https://github.com/alloy-rs/alloy/issues/1869)) +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/rpc-types-mev/CHANGELOG.md b/crates/rpc-types-mev/CHANGELOG.md index 1e25af7bf68..4a8a9e43083 100644 --- a/crates/rpc-types-mev/CHANGELOG.md +++ b/crates/rpc-types-mev/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/rpc-types-trace/CHANGELOG.md b/crates/rpc-types-trace/CHANGELOG.md index fefac3a225f..79033dddcd7 100644 --- a/crates/rpc-types-trace/CHANGELOG.md +++ b/crates/rpc-types-trace/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/rpc-types-txpool/CHANGELOG.md b/crates/rpc-types-txpool/CHANGELOG.md index eed98f25ce1..d69ed441d1f 100644 --- a/crates/rpc-types-txpool/CHANGELOG.md +++ b/crates/rpc-types-txpool/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Features diff --git a/crates/rpc-types/CHANGELOG.md b/crates/rpc-types/CHANGELOG.md index 90bca3ab245..eb7a6af8198 100644 --- a/crates/rpc-types/CHANGELOG.md +++ b/crates/rpc-types/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/serde/CHANGELOG.md b/crates/serde/CHANGELOG.md index b043fbd38c8..ff494417769 100644 --- a/crates/serde/CHANGELOG.md +++ b/crates/serde/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/signer-aws/CHANGELOG.md b/crates/signer-aws/CHANGELOG.md index e0b3faee648..9e7af8cc8fa 100644 --- a/crates/signer-aws/CHANGELOG.md +++ b/crates/signer-aws/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/signer-gcp/CHANGELOG.md b/crates/signer-gcp/CHANGELOG.md index 9648a5b2c75..5c68203884d 100644 --- a/crates/signer-gcp/CHANGELOG.md +++ b/crates/signer-gcp/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/signer-ledger/CHANGELOG.md b/crates/signer-ledger/CHANGELOG.md index 719782492e2..576144e0d9e 100644 --- a/crates/signer-ledger/CHANGELOG.md +++ b/crates/signer-ledger/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/signer-local/CHANGELOG.md b/crates/signer-local/CHANGELOG.md index 55b2d6b6d9d..bdb981f6641 100644 --- a/crates/signer-local/CHANGELOG.md +++ b/crates/signer-local/CHANGELOG.md @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +### Testing + +- Add parity test ([#1889](https://github.com/alloy-rs/alloy/issues/1889)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/signer-trezor/CHANGELOG.md b/crates/signer-trezor/CHANGELOG.md index f11e4054a24..ae077388b79 100644 --- a/crates/signer-trezor/CHANGELOG.md +++ b/crates/signer-trezor/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/signer/CHANGELOG.md b/crates/signer/CHANGELOG.md index deb546fb934..f2054b405e1 100644 --- a/crates/signer/CHANGELOG.md +++ b/crates/signer/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/transport-http/CHANGELOG.md b/crates/transport-http/CHANGELOG.md index 86bc98d9d56..ae1537127d3 100644 --- a/crates/transport-http/CHANGELOG.md +++ b/crates/transport-http/CHANGELOG.md @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +### Features + +- Remove T: Transport from public APIs ([#1859](https://github.com/alloy-rs/alloy/issues/1859)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/transport-ipc/CHANGELOG.md b/crates/transport-ipc/CHANGELOG.md index 0071356194a..afec8f90e0f 100644 --- a/crates/transport-ipc/CHANGELOG.md +++ b/crates/transport-ipc/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/transport-ws/CHANGELOG.md b/crates/transport-ws/CHANGELOG.md index a933cf28dcb..87bd47ba457 100644 --- a/crates/transport-ws/CHANGELOG.md +++ b/crates/transport-ws/CHANGELOG.md @@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks diff --git a/crates/transport/CHANGELOG.md b/crates/transport/CHANGELOG.md index 9dbbf10b6b8..129890af991 100644 --- a/crates/transport/CHANGELOG.md +++ b/crates/transport/CHANGELOG.md @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.0](https://github.com/alloy-rs/alloy/releases/tag/v0.10.0) - 2025-01-06 + +### Documentation + +- Enable some useful rustdoc features on docs.rs ([#1890](https://github.com/alloy-rs/alloy/issues/1890)) + +### Features + +- Remove T: Transport from public APIs ([#1859](https://github.com/alloy-rs/alloy/issues/1859)) + +## [0.9.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03 + +### Miscellaneous Tasks + +- Release 0.9.2 + ## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30 ### Miscellaneous Tasks