From 64f30322223acf829f604373f783390ee19814f8 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Tue, 16 Jul 2024 21:14:41 +0200 Subject: [PATCH] chore: release 0.2.0 --- CHANGELOG.md | 50 ++++++++++++++++++++++ Cargo.toml | 64 ++++++++++++++-------------- crates/alloy/CHANGELOG.md | 12 ++++++ crates/consensus/CHANGELOG.md | 21 +++++++++ crates/contract/CHANGELOG.md | 12 ++++++ crates/eip7547/CHANGELOG.md | 13 ++++++ crates/eips/CHANGELOG.md | 24 +++++++++++ crates/genesis/CHANGELOG.md | 17 ++++++++ crates/json-rpc/CHANGELOG.md | 11 +++++ crates/network/CHANGELOG.md | 12 ++++++ crates/node-bindings/CHANGELOG.md | 18 ++++++++ crates/provider/CHANGELOG.md | 19 +++++++++ crates/pubsub/CHANGELOG.md | 14 ++++++ crates/rpc-client/CHANGELOG.md | 14 ++++++ crates/rpc-types-admin/CHANGELOG.md | 15 +++++++ crates/rpc-types-anvil/CHANGELOG.md | 13 ++++++ crates/rpc-types-beacon/CHANGELOG.md | 11 +++++ crates/rpc-types-engine/CHANGELOG.md | 16 +++++++ crates/rpc-types-eth/CHANGELOG.md | 26 +++++++++++ crates/rpc-types-mev/CHANGELOG.md | 11 +++++ crates/rpc-types-trace/CHANGELOG.md | 24 +++++++++++ crates/rpc-types-txpool/CHANGELOG.md | 13 ++++++ crates/rpc-types/CHANGELOG.md | 17 ++++++++ crates/serde/CHANGELOG.md | 16 +++++++ crates/signer-aws/CHANGELOG.md | 13 ++++++ crates/signer-gcp/CHANGELOG.md | 13 ++++++ crates/signer-ledger/CHANGELOG.md | 13 ++++++ crates/signer-local/CHANGELOG.md | 14 ++++++ crates/signer-trezor/CHANGELOG.md | 15 +++++++ crates/signer/CHANGELOG.md | 13 ++++++ crates/transport-http/CHANGELOG.md | 13 ++++++ crates/transport-ipc/CHANGELOG.md | 13 ++++++ crates/transport-ws/CHANGELOG.md | 13 ++++++ crates/transport/CHANGELOG.md | 12 ++++++ 34 files changed, 563 insertions(+), 32 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad37f0c03b5..1f41da2a36f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,55 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Bug Fixes + +- Trim conflicting key `max_fee_per_blob_gas` from Eip1559 tx type ([#1064](https://github.com/alloy-rs/alloy/issues/1064)) +- [provider] Prevent panic from having 0 keys when calling `on_anvil_with_wallet_and_config` ([#1055](https://github.com/alloy-rs/alloy/issues/1055)) +- Require storageKeys value broken bincode serialization from [#955](https://github.com/alloy-rs/alloy/issues/955) ([#1058](https://github.com/alloy-rs/alloy/issues/1058)) +- [provider] Do not overflow LRU cache capacity in ChainStreamPoller ([#1052](https://github.com/alloy-rs/alloy/issues/1052)) +- [admin] Id in NodeInfo is string instead of B256 ([#1038](https://github.com/alloy-rs/alloy/issues/1038)) +- Cargo fmt ([#1044](https://github.com/alloy-rs/alloy/issues/1044)) +- [eip7702] Add correct rlp decode/encode ([#1034](https://github.com/alloy-rs/alloy/issues/1034)) + +### Dependencies + +- [deps] Bump Trezor client to `=0.1.4` to fix signing bug ([#1045](https://github.com/alloy-rs/alloy/issues/1045)) + +### Features + +- Expose encoded_len_with_signature() ([#1063](https://github.com/alloy-rs/alloy/issues/1063)) +- Add 7702 tx type ([#1046](https://github.com/alloy-rs/alloy/issues/1046)) +- [rpc-types-eth] Serde flatten `BlobTransactionSidecar` in tx req ([#1054](https://github.com/alloy-rs/alloy/issues/1054)) +- Add authorization list to rpc transaction and tx receipt types ([#1051](https://github.com/alloy-rs/alloy/issues/1051)) +- Impl `arbitrary` for tx structs ([#1050](https://github.com/alloy-rs/alloy/issues/1050)) +- [core] Update core version ([#1049](https://github.com/alloy-rs/alloy/issues/1049)) +- [otterscan] Add ots slim block and serialze OperationType to int ([#1043](https://github.com/alloy-rs/alloy/issues/1043)) +- Generate valid signed auth signatures ([#1041](https://github.com/alloy-rs/alloy/issues/1041)) +- Add `rpc-types-mev` feature to meta crate ([#1040](https://github.com/alloy-rs/alloy/issues/1040)) +- Add arbitrary to auth ([#1036](https://github.com/alloy-rs/alloy/issues/1036)) +- [genesis] Rm EIP150Hash ([#1039](https://github.com/alloy-rs/alloy/issues/1039)) +- Add hash for 7702 ([#1037](https://github.com/alloy-rs/alloy/issues/1037)) +- Add rpc namespace ([#994](https://github.com/alloy-rs/alloy/issues/994)) + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 +- Make auth mandatory in recovered auth ([#1047](https://github.com/alloy-rs/alloy/issues/1047)) +- Trace output utils ([#1027](https://github.com/alloy-rs/alloy/issues/1027)) +- Fix unnameable types ([#1029](https://github.com/alloy-rs/alloy/issues/1029)) +- Add payloadbodies v2 to capabilities set ([#1025](https://github.com/alloy-rs/alloy/issues/1025)) + +### Refactor + +- Replace `U64` with `u64` ([#1057](https://github.com/alloy-rs/alloy/issues/1057)) + +### Styling + +- Remove proptest in all crates and Arbitrary derives ([#966](https://github.com/alloy-rs/alloy/issues/966)) + ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 ### Bug Fixes @@ -45,6 +94,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.1.4 - Update release config - Add helper functions for destructuring auth types ([#1022](https://github.com/alloy-rs/alloy/issues/1022)) - Convert rcp-types-eth block Header to consensus Header ([#1014](https://github.com/alloy-rs/alloy/issues/1014)) diff --git a/Cargo.toml b/Cargo.toml index 76615ab2d70..9f17dd07bd8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["crates/*"] resolver = "2" [workspace.package] -version = "0.1.4" +version = "0.2.0" edition = "2021" rust-version = "1.76" authors = ["Alloy Contributors"] @@ -35,37 +35,37 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [workspace.dependencies] -alloy-consensus = { version = "0.1", path = "crates/consensus", default-features = false } -alloy-contract = { version = "0.1", path = "crates/contract", default-features = false } -alloy-eips = { version = "0.1", path = "crates/eips", default-features = false } -alloy-eip7547 = { version = "0.1", path = "crates/eip7547", default-features = false } -alloy-genesis = { version = "0.1", path = "crates/genesis", default-features = false } -alloy-json-rpc = { version = "0.1", path = "crates/json-rpc", default-features = false } -alloy-network = { version = "0.1", path = "crates/network", default-features = false } -alloy-node-bindings = { version = "0.1", path = "crates/node-bindings", default-features = false } -alloy-provider = { version = "0.1", path = "crates/provider", default-features = false } -alloy-pubsub = { version = "0.1", path = "crates/pubsub", default-features = false } -alloy-rpc-client = { version = "0.1", path = "crates/rpc-client", default-features = false } -alloy-rpc-types-admin = { version = "0.1", path = "crates/rpc-types-admin", default-features = false } -alloy-rpc-types-anvil = { version = "0.1", path = "crates/rpc-types-anvil", default-features = false } -alloy-rpc-types-beacon = { version = "0.1", path = "crates/rpc-types-beacon", default-features = false } -alloy-rpc-types-engine = { version = "0.1", path = "crates/rpc-types-engine", default-features = false } -alloy-rpc-types-eth = { version = "0.1", path = "crates/rpc-types-eth", default-features = false } -alloy-rpc-types-mev = { version = "0.1", path = "crates/rpc-types-mev", default-features = false } -alloy-rpc-types-trace = { version = "0.1", path = "crates/rpc-types-trace", default-features = false } -alloy-rpc-types-txpool = { version = "0.1", path = "crates/rpc-types-txpool", default-features = false } -alloy-rpc-types = { version = "0.1", path = "crates/rpc-types", default-features = false } -alloy-serde = { version = "0.1", path = "crates/serde", default-features = false } -alloy-signer = { version = "0.1", path = "crates/signer", default-features = false } -alloy-signer-aws = { version = "0.1", path = "crates/signer-aws", default-features = false } -alloy-signer-gcp = { version = "0.1", path = "crates/signer-gcp", default-features = false } -alloy-signer-ledger = { version = "0.1", path = "crates/signer-ledger", default-features = false } -alloy-signer-local = { version = "0.1", path = "crates/signer-local", default-features = false } -alloy-signer-trezor = { version = "0.1", path = "crates/signer-trezor", default-features = false } -alloy-transport = { version = "0.1", path = "crates/transport", default-features = false } -alloy-transport-http = { version = "0.1", path = "crates/transport-http", default-features = false } -alloy-transport-ipc = { version = "0.1", path = "crates/transport-ipc", default-features = false } -alloy-transport-ws = { version = "0.1", path = "crates/transport-ws", default-features = false } +alloy-consensus = { version = "0.2", path = "crates/consensus", default-features = false } +alloy-contract = { version = "0.2", path = "crates/contract", default-features = false } +alloy-eips = { version = "0.2", path = "crates/eips", default-features = false } +alloy-eip7547 = { version = "0.2", path = "crates/eip7547", default-features = false } +alloy-genesis = { version = "0.2", path = "crates/genesis", default-features = false } +alloy-json-rpc = { version = "0.2", path = "crates/json-rpc", default-features = false } +alloy-network = { version = "0.2", path = "crates/network", default-features = false } +alloy-node-bindings = { version = "0.2", path = "crates/node-bindings", default-features = false } +alloy-provider = { version = "0.2", path = "crates/provider", default-features = false } +alloy-pubsub = { version = "0.2", path = "crates/pubsub", default-features = false } +alloy-rpc-client = { version = "0.2", path = "crates/rpc-client", default-features = false } +alloy-rpc-types-admin = { version = "0.2", path = "crates/rpc-types-admin", default-features = false } +alloy-rpc-types-anvil = { version = "0.2", path = "crates/rpc-types-anvil", default-features = false } +alloy-rpc-types-beacon = { version = "0.2", path = "crates/rpc-types-beacon", default-features = false } +alloy-rpc-types-engine = { version = "0.2", path = "crates/rpc-types-engine", default-features = false } +alloy-rpc-types-eth = { version = "0.2", path = "crates/rpc-types-eth", default-features = false } +alloy-rpc-types-mev = { version = "0.2", path = "crates/rpc-types-mev", default-features = false } +alloy-rpc-types-trace = { version = "0.2", path = "crates/rpc-types-trace", default-features = false } +alloy-rpc-types-txpool = { version = "0.2", path = "crates/rpc-types-txpool", default-features = false } +alloy-rpc-types = { version = "0.2", path = "crates/rpc-types", default-features = false } +alloy-serde = { version = "0.2", path = "crates/serde", default-features = false } +alloy-signer = { version = "0.2", path = "crates/signer", default-features = false } +alloy-signer-aws = { version = "0.2", path = "crates/signer-aws", default-features = false } +alloy-signer-gcp = { version = "0.2", path = "crates/signer-gcp", default-features = false } +alloy-signer-ledger = { version = "0.2", path = "crates/signer-ledger", default-features = false } +alloy-signer-local = { version = "0.2", path = "crates/signer-local", default-features = false } +alloy-signer-trezor = { version = "0.2", path = "crates/signer-trezor", default-features = false } +alloy-transport = { version = "0.2", path = "crates/transport", default-features = false } +alloy-transport-http = { version = "0.2", path = "crates/transport-http", default-features = false } +alloy-transport-ipc = { version = "0.2", path = "crates/transport-ipc", default-features = false } +alloy-transport-ws = { version = "0.2", path = "crates/transport-ws", default-features = false } alloy-core = { version = "0.7.7", default-features = false } alloy-dyn-abi = { version = "0.7.7", default-features = false } diff --git a/crates/alloy/CHANGELOG.md b/crates/alloy/CHANGELOG.md index 0054e2d5f9d..87fe5d40423 100644 --- a/crates/alloy/CHANGELOG.md +++ b/crates/alloy/CHANGELOG.md @@ -5,6 +5,17 @@ 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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Features + +- Add `rpc-types-mev` feature to meta crate ([#1040](https://github.com/alloy-rs/alloy/issues/1040)) + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 + ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 ### Dependencies @@ -17,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### 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 diff --git a/crates/consensus/CHANGELOG.md b/crates/consensus/CHANGELOG.md index 9dd423660f7..f866a1a7d3c 100644 --- a/crates/consensus/CHANGELOG.md +++ b/crates/consensus/CHANGELOG.md @@ -5,12 +5,33 @@ 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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Features + +- Expose encoded_len_with_signature() ([#1063](https://github.com/alloy-rs/alloy/issues/1063)) +- Add 7702 tx type ([#1046](https://github.com/alloy-rs/alloy/issues/1046)) +- Impl `arbitrary` for tx structs ([#1050](https://github.com/alloy-rs/alloy/issues/1050)) + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 + +### Styling + +- Remove proptest in all crates and Arbitrary derives ([#966](https://github.com/alloy-rs/alloy/issues/966)) + ## [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)) diff --git a/crates/contract/CHANGELOG.md b/crates/contract/CHANGELOG.md index 269bef1c998..43945c28fe7 100644 --- a/crates/contract/CHANGELOG.md +++ b/crates/contract/CHANGELOG.md @@ -5,8 +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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 +- Fix unnameable types ([#1029](https://github.com/alloy-rs/alloy/issues/1029)) + ## [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)) diff --git a/crates/eip7547/CHANGELOG.md b/crates/eip7547/CHANGELOG.md index 63de946cb56..516d9874b5f 100644 --- a/crates/eip7547/CHANGELOG.md +++ b/crates/eip7547/CHANGELOG.md @@ -5,6 +5,19 @@ 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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.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 ### Miscellaneous Tasks diff --git a/crates/eips/CHANGELOG.md b/crates/eips/CHANGELOG.md index 2b5e4180ef9..382eff41105 100644 --- a/crates/eips/CHANGELOG.md +++ b/crates/eips/CHANGELOG.md @@ -5,6 +5,29 @@ 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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Bug Fixes + +- Require storageKeys value broken bincode serialization from [#955](https://github.com/alloy-rs/alloy/issues/955) ([#1058](https://github.com/alloy-rs/alloy/issues/1058)) +- Cargo fmt ([#1044](https://github.com/alloy-rs/alloy/issues/1044)) +- [eip7702] Add correct rlp decode/encode ([#1034](https://github.com/alloy-rs/alloy/issues/1034)) + +### Features + +- Add authorization list to rpc transaction and tx receipt types ([#1051](https://github.com/alloy-rs/alloy/issues/1051)) +- Generate valid signed auth signatures ([#1041](https://github.com/alloy-rs/alloy/issues/1041)) +- Add arbitrary to auth ([#1036](https://github.com/alloy-rs/alloy/issues/1036)) +- Add hash for 7702 ([#1037](https://github.com/alloy-rs/alloy/issues/1037)) + +### Miscellaneous Tasks + +- Make auth mandatory in recovered auth ([#1047](https://github.com/alloy-rs/alloy/issues/1047)) + +### Styling + +- Remove proptest in all crates and Arbitrary derives ([#966](https://github.com/alloy-rs/alloy/issues/966)) + ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 ### Features @@ -15,6 +38,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### 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)) diff --git a/crates/genesis/CHANGELOG.md b/crates/genesis/CHANGELOG.md index e2606021b06..a44f3b900df 100644 --- a/crates/genesis/CHANGELOG.md +++ b/crates/genesis/CHANGELOG.md @@ -5,10 +5,27 @@ 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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Features + +- [genesis] Rm EIP150Hash ([#1039](https://github.com/alloy-rs/alloy/issues/1039)) + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.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 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 diff --git a/crates/json-rpc/CHANGELOG.md b/crates/json-rpc/CHANGELOG.md index f5542048dfa..ac25e512b06 100644 --- a/crates/json-rpc/CHANGELOG.md +++ b/crates/json-rpc/CHANGELOG.md @@ -5,12 +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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 + ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 ### Features - [transport] Retry layer ([#849](https://github.com/alloy-rs/alloy/issues/849)) +### 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 diff --git a/crates/network/CHANGELOG.md b/crates/network/CHANGELOG.md index 2fd7b90e814..9b2aa65b1bf 100644 --- a/crates/network/CHANGELOG.md +++ b/crates/network/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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 +- Fix unnameable types ([#1029](https://github.com/alloy-rs/alloy/issues/1029)) + ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 ### Features - [network] Block context in ReceiptResponse ([#1003](https://github.com/alloy-rs/alloy/issues/1003)) +### Miscellaneous Tasks + +- Release 0.1.4 + ## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25 ### Features diff --git a/crates/node-bindings/CHANGELOG.md b/crates/node-bindings/CHANGELOG.md index e3e487cb7b9..e65787af257 100644 --- a/crates/node-bindings/CHANGELOG.md +++ b/crates/node-bindings/CHANGELOG.md @@ -5,10 +5,28 @@ 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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Bug Fixes + +- [provider] Prevent panic from having 0 keys when calling `on_anvil_with_wallet_and_config` ([#1055](https://github.com/alloy-rs/alloy/issues/1055)) +- [admin] Id in NodeInfo is string instead of B256 ([#1038](https://github.com/alloy-rs/alloy/issues/1038)) + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.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 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 diff --git a/crates/provider/CHANGELOG.md b/crates/provider/CHANGELOG.md index 3015bc97f3b..14bfae1615d 100644 --- a/crates/provider/CHANGELOG.md +++ b/crates/provider/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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Bug Fixes + +- [provider] Prevent panic from having 0 keys when calling `on_anvil_with_wallet_and_config` ([#1055](https://github.com/alloy-rs/alloy/issues/1055)) +- [provider] Do not overflow LRU cache capacity in ChainStreamPoller ([#1052](https://github.com/alloy-rs/alloy/issues/1052)) +- [admin] Id in NodeInfo is string instead of B256 ([#1038](https://github.com/alloy-rs/alloy/issues/1038)) + +### Features + +- Add rpc namespace ([#994](https://github.com/alloy-rs/alloy/issues/994)) + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 +- Fix unnameable types ([#1029](https://github.com/alloy-rs/alloy/issues/1029)) + ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 ### Bug Fixes @@ -21,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Miscellaneous Tasks +- Release 0.1.4 - [provider] Simplify nonce filler ([#976](https://github.com/alloy-rs/alloy/issues/976)) ### Testing diff --git a/crates/pubsub/CHANGELOG.md b/crates/pubsub/CHANGELOG.md index 3636086dc32..7403bfabfd2 100644 --- a/crates/pubsub/CHANGELOG.md +++ b/crates/pubsub/CHANGELOG.md @@ -5,10 +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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 +- Fix unnameable types ([#1029](https://github.com/alloy-rs/alloy/issues/1029)) + ## [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 + +### Miscellaneous Tasks + - Release 0.1.3 - Nightly clippy ([#947](https://github.com/alloy-rs/alloy/issues/947)) diff --git a/crates/rpc-client/CHANGELOG.md b/crates/rpc-client/CHANGELOG.md index b45e3e3b480..e4fc5179bd2 100644 --- a/crates/rpc-client/CHANGELOG.md +++ b/crates/rpc-client/CHANGELOG.md @@ -5,10 +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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 +- Fix unnameable types ([#1029](https://github.com/alloy-rs/alloy/issues/1029)) + ## [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 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 diff --git a/crates/rpc-types-admin/CHANGELOG.md b/crates/rpc-types-admin/CHANGELOG.md index e9617aa23af..370e48150e6 100644 --- a/crates/rpc-types-admin/CHANGELOG.md +++ b/crates/rpc-types-admin/CHANGELOG.md @@ -5,12 +5,27 @@ 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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Bug Fixes + +- [admin] Id in NodeInfo is string instead of B256 ([#1038](https://github.com/alloy-rs/alloy/issues/1038)) + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 + ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 ### Features - Add missing admin_* methods ([#991](https://github.com/alloy-rs/alloy/issues/991)) +### 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 diff --git a/crates/rpc-types-anvil/CHANGELOG.md b/crates/rpc-types-anvil/CHANGELOG.md index 02c88540f34..2d120db226c 100644 --- a/crates/rpc-types-anvil/CHANGELOG.md +++ b/crates/rpc-types-anvil/CHANGELOG.md @@ -5,10 +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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.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 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 diff --git a/crates/rpc-types-beacon/CHANGELOG.md b/crates/rpc-types-beacon/CHANGELOG.md index 0c6c1b5b1a1..2f16fd707a6 100644 --- a/crates/rpc-types-beacon/CHANGELOG.md +++ b/crates/rpc-types-beacon/CHANGELOG.md @@ -5,6 +5,13 @@ 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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 + ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 ### Features @@ -12,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add consolidation requests to v4 payload ([#1013](https://github.com/alloy-rs/alloy/issues/1013)) - Add submit block request query ([#995](https://github.com/alloy-rs/alloy/issues/995)) +### 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 diff --git a/crates/rpc-types-engine/CHANGELOG.md b/crates/rpc-types-engine/CHANGELOG.md index 48a39ea180a..349a15fd96f 100644 --- a/crates/rpc-types-engine/CHANGELOG.md +++ b/crates/rpc-types-engine/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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 +- Add payloadbodies v2 to capabilities set ([#1025](https://github.com/alloy-rs/alloy/issues/1025)) + +### Refactor + +- Replace `U64` with `u64` ([#1057](https://github.com/alloy-rs/alloy/issues/1057)) + ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 ### Features @@ -12,6 +24,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add execution payloadbodyv2 ([#1012](https://github.com/alloy-rs/alloy/issues/1012)) - Add consolidation requests to v4 payload ([#1013](https://github.com/alloy-rs/alloy/issues/1013)) +### 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 diff --git a/crates/rpc-types-eth/CHANGELOG.md b/crates/rpc-types-eth/CHANGELOG.md index 02b76489156..85720423448 100644 --- a/crates/rpc-types-eth/CHANGELOG.md +++ b/crates/rpc-types-eth/CHANGELOG.md @@ -5,6 +5,31 @@ 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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Bug Fixes + +- Trim conflicting key `max_fee_per_blob_gas` from Eip1559 tx type ([#1064](https://github.com/alloy-rs/alloy/issues/1064)) + +### Features + +- [rpc-types-eth] Serde flatten `BlobTransactionSidecar` in tx req ([#1054](https://github.com/alloy-rs/alloy/issues/1054)) +- Add authorization list to rpc transaction and tx receipt types ([#1051](https://github.com/alloy-rs/alloy/issues/1051)) + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 +- Fix unnameable types ([#1029](https://github.com/alloy-rs/alloy/issues/1029)) + +### Refactor + +- Replace `U64` with `u64` ([#1057](https://github.com/alloy-rs/alloy/issues/1057)) + +### Styling + +- Remove proptest in all crates and Arbitrary derives ([#966](https://github.com/alloy-rs/alloy/issues/966)) + ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 ### Features @@ -15,6 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### 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)) diff --git a/crates/rpc-types-mev/CHANGELOG.md b/crates/rpc-types-mev/CHANGELOG.md index ff00b47b972..f1c0bc3a696 100644 --- a/crates/rpc-types-mev/CHANGELOG.md +++ b/crates/rpc-types-mev/CHANGELOG.md @@ -5,12 +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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 + ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 ### Features - Add missing eth bundle args ([#978](https://github.com/alloy-rs/alloy/issues/978)) +### Miscellaneous Tasks + +- Release 0.1.4 + ### Other - Update builders to vector of strings in privacy struct ([#983](https://github.com/alloy-rs/alloy/issues/983)) diff --git a/crates/rpc-types-trace/CHANGELOG.md b/crates/rpc-types-trace/CHANGELOG.md index 446969cb8fa..f7b1b92a24e 100644 --- a/crates/rpc-types-trace/CHANGELOG.md +++ b/crates/rpc-types-trace/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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Features + +- [otterscan] Add ots slim block and serialze OperationType to int ([#1043](https://github.com/alloy-rs/alloy/issues/1043)) + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 +- Trace output utils ([#1027](https://github.com/alloy-rs/alloy/issues/1027)) + +### Refactor + +- Replace `U64` with `u64` ([#1057](https://github.com/alloy-rs/alloy/issues/1057)) + +### Styling + +- Remove proptest in all crates and Arbitrary derives ([#966](https://github.com/alloy-rs/alloy/issues/966)) + ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 ### Bug Fixes @@ -16,6 +36,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [otterscan] Add output for TraceEntry ([#1001](https://github.com/alloy-rs/alloy/issues/1001)) - Add helpers for trace action ([#982](https://github.com/alloy-rs/alloy/issues/982)) +### 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 diff --git a/crates/rpc-types-txpool/CHANGELOG.md b/crates/rpc-types-txpool/CHANGELOG.md index bcffcbc0bdd..34c1bd210a1 100644 --- a/crates/rpc-types-txpool/CHANGELOG.md +++ b/crates/rpc-types-txpool/CHANGELOG.md @@ -5,10 +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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.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 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 diff --git a/crates/rpc-types/CHANGELOG.md b/crates/rpc-types/CHANGELOG.md index 0f921bbc142..aff7a29039a 100644 --- a/crates/rpc-types/CHANGELOG.md +++ b/crates/rpc-types/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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Features + +- Add rpc namespace ([#994](https://github.com/alloy-rs/alloy/issues/994)) + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.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 ### Features diff --git a/crates/serde/CHANGELOG.md b/crates/serde/CHANGELOG.md index 9054ea1042b..9897d637c17 100644 --- a/crates/serde/CHANGELOG.md +++ b/crates/serde/CHANGELOG.md @@ -5,8 +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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Fix unnameable types ([#1029](https://github.com/alloy-rs/alloy/issues/1029)) + +### Styling + +- Remove proptest in all crates and Arbitrary derives ([#966](https://github.com/alloy-rs/alloy/issues/966)) + ## [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)) diff --git a/crates/signer-aws/CHANGELOG.md b/crates/signer-aws/CHANGELOG.md index 7b986cd7348..8d0a305c90b 100644 --- a/crates/signer-aws/CHANGELOG.md +++ b/crates/signer-aws/CHANGELOG.md @@ -5,6 +5,19 @@ 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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.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 ### Miscellaneous Tasks diff --git a/crates/signer-gcp/CHANGELOG.md b/crates/signer-gcp/CHANGELOG.md index 843a7766f71..fe18142eb7d 100644 --- a/crates/signer-gcp/CHANGELOG.md +++ b/crates/signer-gcp/CHANGELOG.md @@ -5,6 +5,19 @@ 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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.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 ### Miscellaneous Tasks diff --git a/crates/signer-ledger/CHANGELOG.md b/crates/signer-ledger/CHANGELOG.md index 2b2d0644f6e..aeb71f23047 100644 --- a/crates/signer-ledger/CHANGELOG.md +++ b/crates/signer-ledger/CHANGELOG.md @@ -5,6 +5,19 @@ 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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.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 ### Miscellaneous Tasks diff --git a/crates/signer-local/CHANGELOG.md b/crates/signer-local/CHANGELOG.md index d8fae0e572a..defe425da03 100644 --- a/crates/signer-local/CHANGELOG.md +++ b/crates/signer-local/CHANGELOG.md @@ -5,10 +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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 +- Fix unnameable types ([#1029](https://github.com/alloy-rs/alloy/issues/1029)) + ## [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 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 diff --git a/crates/signer-trezor/CHANGELOG.md b/crates/signer-trezor/CHANGELOG.md index 9a792659f9f..e8df4185f60 100644 --- a/crates/signer-trezor/CHANGELOG.md +++ b/crates/signer-trezor/CHANGELOG.md @@ -5,12 +5,27 @@ 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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Dependencies + +- [deps] Bump Trezor client to `=0.1.4` to fix signing bug ([#1045](https://github.com/alloy-rs/alloy/issues/1045)) + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 + ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 ### Bug Fixes - [signer-trezor] Fix zero gas price when sending legacy tx with trezor ([#977](https://github.com/alloy-rs/alloy/issues/977)) +### 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 diff --git a/crates/signer/CHANGELOG.md b/crates/signer/CHANGELOG.md index af99be8213a..ca994bf36f9 100644 --- a/crates/signer/CHANGELOG.md +++ b/crates/signer/CHANGELOG.md @@ -5,10 +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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.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 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 diff --git a/crates/transport-http/CHANGELOG.md b/crates/transport-http/CHANGELOG.md index 22e62e313d8..146c016b946 100644 --- a/crates/transport-http/CHANGELOG.md +++ b/crates/transport-http/CHANGELOG.md @@ -5,10 +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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.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 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 diff --git a/crates/transport-ipc/CHANGELOG.md b/crates/transport-ipc/CHANGELOG.md index 2cf8f7f6a2d..edbae0d18dc 100644 --- a/crates/transport-ipc/CHANGELOG.md +++ b/crates/transport-ipc/CHANGELOG.md @@ -5,8 +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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.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)) diff --git a/crates/transport-ws/CHANGELOG.md b/crates/transport-ws/CHANGELOG.md index 26a45ac7cf6..59b028483d8 100644 --- a/crates/transport-ws/CHANGELOG.md +++ b/crates/transport-ws/CHANGELOG.md @@ -5,10 +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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.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 + +### Miscellaneous Tasks + - Release 0.1.3 ## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19 diff --git a/crates/transport/CHANGELOG.md b/crates/transport/CHANGELOG.md index c23edc0ab1e..e1b248fc7b2 100644 --- a/crates/transport/CHANGELOG.md +++ b/crates/transport/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.2.0](https://github.com/alloy-rs/alloy/releases/tag/v0.2.0) - 2024-07-16 + +### Miscellaneous Tasks + +- Release 0.2.0 +- Release 0.2.0 +- Fix unnameable types ([#1029](https://github.com/alloy-rs/alloy/issues/1029)) + ## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08 ### Features - [transport] Retry layer ([#849](https://github.com/alloy-rs/alloy/issues/849)) +### 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