Skip to content

Commit b2ffb9f

Browse files
committed
chore: release 0.7.3
1 parent a0e24f3 commit b2ffb9f

File tree

39 files changed

+872
-271
lines changed

39 files changed

+872
-271
lines changed

CHANGELOG.md

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.7.2](https://github.com/alloy-rs/alloy/releases/tag/v0.7.2) - 2024-12-02
8+
## [0.7.3](https://github.com/alloy-rs/alloy/releases/tag/v0.7.3) - 2024-12-05
99

1010
### Bug Fixes
1111

12+
- Wrong func sig ([#1742](https://github.com/alloy-rs/alloy/issues/1742))
1213
- Remove `Borrow` impl for RPC receipt ([#1721](https://github.com/alloy-rs/alloy/issues/1721))
1314
- Adjust EIP-7742 to latest spec ([#1713](https://github.com/alloy-rs/alloy/issues/1713))
1415
- Omit empty requests ([#1706](https://github.com/alloy-rs/alloy/issues/1706))
@@ -21,10 +22,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2122

2223
### Documentation
2324

25+
- Fix `SignableTransaction` docs to use `PrimitiveSignature` ([#1743](https://github.com/alloy-rs/alloy/issues/1743))
2426
- Update docs for eip7685 `Requests` ([#1714](https://github.com/alloy-rs/alloy/issues/1714))
2527

2628
### Features
2729

30+
- Impl Encodable / Decodable for Receipts ([#1752](https://github.com/alloy-rs/alloy/issues/1752))
31+
- Add TrieAccount conversion for genesis account ([#1755](https://github.com/alloy-rs/alloy/issues/1755))
32+
- Add `BlockHeader::blob_fee` ([#1754](https://github.com/alloy-rs/alloy/issues/1754))
33+
- Migrate to `TrieAccount` of alloy-trie ([#1750](https://github.com/alloy-rs/alloy/issues/1750))
34+
- Move is_empty to trait function ([#1749](https://github.com/alloy-rs/alloy/issues/1749))
35+
- Add missing new fn ([#1747](https://github.com/alloy-rs/alloy/issues/1747))
36+
- Specialized geth tracer ([#1739](https://github.com/alloy-rs/alloy/issues/1739))
37+
- Make Receipt rlp methods pub ([#1731](https://github.com/alloy-rs/alloy/issues/1731))
2838
- Receipt root fn ([#1708](https://github.com/alloy-rs/alloy/issues/1708))
2939
- Impl `Encodable2718` for `ReceiptWithBloom` ([#1719](https://github.com/alloy-rs/alloy/issues/1719))
3040
- Feat(rpc-types-eth) add test for syncing ([#1724](https://github.com/alloy-rs/alloy/issues/1724))
@@ -33,12 +43,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3343

3444
### Miscellaneous Tasks
3545

36-
- Release 0.7.2
46+
- Export storage root fns ([#1756](https://github.com/alloy-rs/alloy/issues/1756))
47+
- Re-export stateroot fns ([#1753](https://github.com/alloy-rs/alloy/issues/1753))
48+
- Display instead of Debug the response JSON ([#1748](https://github.com/alloy-rs/alloy/issues/1748))
49+
- Rm redundant generic ([#1737](https://github.com/alloy-rs/alloy/issues/1737))
50+
- Relax ommers root fn ([#1736](https://github.com/alloy-rs/alloy/issues/1736))
51+
- Add missing from impl ([#1732](https://github.com/alloy-rs/alloy/issues/1732))
52+
- Update release.toml ([#1730](https://github.com/alloy-rs/alloy/issues/1730))
53+
- Release 0.7.2 ([#1729](https://github.com/alloy-rs/alloy/issues/1729))
3754
- Disable serde-with default features ([#1703](https://github.com/alloy-rs/alloy/issues/1703))
3855
- Use encoded2718 ([#1702](https://github.com/alloy-rs/alloy/issues/1702))
3956

4057
### Other
4158

59+
- Specialized geth tracer for debug trace call ([#1741](https://github.com/alloy-rs/alloy/issues/1741))
60+
- Add non strict JSON decoding for engine Payloadv2 type ([#1740](https://github.com/alloy-rs/alloy/issues/1740))
4261
- Block_number_index added to callBundle reference type ([#1705](https://github.com/alloy-rs/alloy/issues/1705))
4362
- Remove wrapper BlobsBundleV1Ssz ([#1726](https://github.com/alloy-rs/alloy/issues/1726))
4463
- Change BlobsBundleV1Ssz unwrap implementation to safe code ([#1723](https://github.com/alloy-rs/alloy/issues/1723))

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.7.2"
6+
version = "0.7.3"
77
edition = "2021"
88
rust-version = "1.81"
99
authors = ["Alloy Contributors"]

crates/alloy/CHANGELOG.md

Lines changed: 26 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,18 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.7.2](https://github.com/alloy-rs/alloy/releases/tag/v0.7.2) - 2024-12-02
8+
## [0.7.3](https://github.com/alloy-rs/alloy/releases/tag/v0.7.3) - 2024-12-05
99

1010
### Miscellaneous Tasks
1111

12-
- Release 0.7.2
12+
- Release 0.7.2 ([#1729](https://github.com/alloy-rs/alloy/issues/1729))
1313

1414
## [0.7.0](https://github.com/alloy-rs/alloy/releases/tag/v0.7.0) - 2024-11-28
1515

1616
### Miscellaneous Tasks
1717

18+
- Release 0.7.0
19+
- Release 0.7.0
1820
- Release 0.7.0
1921

2022
## [0.6.4](https://github.com/alloy-rs/alloy/releases/tag/v0.6.4) - 2024-11-12
@@ -167,25 +169,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
167169
### Features
168170

169171
- Add net rpc namespace ([#989](https://github.com/alloy-rs/alloy/issues/989))
170-
- [alloy] Forward `rustls` & `native` reqwest TLS configuration to Alloy's metacrate ([#969](https://github.com/alloy-rs/alloy/issues/969))
171-
- Add eip-7702 helpers ([#950](https://github.com/alloy-rs/alloy/issues/950))
172172

173173
### Miscellaneous Tasks
174174

175175
- Release 0.1.4
176176
- Release 0.1.3 (-p alloy)
177+
178+
## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25
179+
180+
### Features
181+
182+
- [alloy] Forward `rustls` & `native` reqwest TLS configuration to Alloy's metacrate ([#969](https://github.com/alloy-rs/alloy/issues/969))
183+
- Add eip-7702 helpers ([#950](https://github.com/alloy-rs/alloy/issues/950))
184+
185+
### Miscellaneous Tasks
186+
177187
- Add more features to meta crate ([#953](https://github.com/alloy-rs/alloy/issues/953))
178188

179189
## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19
180190

191+
### Documentation
192+
193+
- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914))
194+
195+
### Miscellaneous Tasks
196+
197+
- Release 0.1.2
198+
- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922))
199+
- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917))
200+
201+
## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17
202+
181203
### Bug Fixes
182204

183205
- Include `alloy-contract?/pubsub` in `pubsub` feature ([#703](https://github.com/alloy-rs/alloy/issues/703))
184206
- Expose kzg feat via alloy namespace ([#660](https://github.com/alloy-rs/alloy/issues/660))
185207

186208
### Documentation
187209

188-
- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914))
189210
- Unhide `sol!` wrapper in meta crate ([#654](https://github.com/alloy-rs/alloy/issues/654))
190211

191212
### Features
@@ -206,9 +227,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
206227

207228
### Miscellaneous Tasks
208229

209-
- Release 0.1.2
210-
- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922))
211-
- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917))
212230
- [eips] Compile tests with default features ([#860](https://github.com/alloy-rs/alloy/issues/860))
213231
- Remove stale todos ([#354](https://github.com/alloy-rs/alloy/issues/354))
214232
- [alloy] Re-export `alloy-core` items individually ([#230](https://github.com/alloy-rs/alloy/issues/230))

crates/consensus-any/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.7.2](https://github.com/alloy-rs/alloy/releases/tag/v0.7.2) - 2024-12-02
8+
## [0.7.3](https://github.com/alloy-rs/alloy/releases/tag/v0.7.3) - 2024-12-05
99

1010
### Bug Fixes
1111

@@ -17,7 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717

1818
### Miscellaneous Tasks
1919

20-
- Release 0.7.2
20+
- Release 0.7.2 ([#1729](https://github.com/alloy-rs/alloy/issues/1729))
2121

2222
## [0.7.0](https://github.com/alloy-rs/alloy/releases/tag/v0.7.0) - 2024-11-28
2323

crates/consensus/CHANGELOG.md

Lines changed: 63 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,45 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [0.7.2](https://github.com/alloy-rs/alloy/releases/tag/v0.7.2) - 2024-12-02
8+
## [0.7.3](https://github.com/alloy-rs/alloy/releases/tag/v0.7.3) - 2024-12-05
99

1010
### Bug Fixes
1111

1212
- Adjust EIP-7742 to latest spec ([#1713](https://github.com/alloy-rs/alloy/issues/1713))
13-
- Pass slice to RlpReceipt::rlp_decode_fields ([#1696](https://github.com/alloy-rs/alloy/issues/1696))
14-
- [`consensus`] Serde aliases to avoid breaking changes ([#1654](https://github.com/alloy-rs/alloy/issues/1654))
13+
14+
### Documentation
15+
16+
- Fix `SignableTransaction` docs to use `PrimitiveSignature` ([#1743](https://github.com/alloy-rs/alloy/issues/1743))
1517

1618
### Features
1719

20+
- Impl Encodable / Decodable for Receipts ([#1752](https://github.com/alloy-rs/alloy/issues/1752))
21+
- Add `BlockHeader::blob_fee` ([#1754](https://github.com/alloy-rs/alloy/issues/1754))
22+
- Migrate to `TrieAccount` of alloy-trie ([#1750](https://github.com/alloy-rs/alloy/issues/1750))
23+
- Move is_empty to trait function ([#1749](https://github.com/alloy-rs/alloy/issues/1749))
24+
- Make Receipt rlp methods pub ([#1731](https://github.com/alloy-rs/alloy/issues/1731))
1825
- Receipt root fn ([#1708](https://github.com/alloy-rs/alloy/issues/1708))
1926
- Impl `Encodable2718` for `ReceiptWithBloom` ([#1719](https://github.com/alloy-rs/alloy/issues/1719))
2027
- Add blob_gas_used ([#1704](https://github.com/alloy-rs/alloy/issues/1704))
28+
29+
### Miscellaneous Tasks
30+
31+
- Export storage root fns ([#1756](https://github.com/alloy-rs/alloy/issues/1756))
32+
- Re-export stateroot fns ([#1753](https://github.com/alloy-rs/alloy/issues/1753))
33+
- Rm redundant generic ([#1737](https://github.com/alloy-rs/alloy/issues/1737))
34+
- Relax ommers root fn ([#1736](https://github.com/alloy-rs/alloy/issues/1736))
35+
- Add missing from impl ([#1732](https://github.com/alloy-rs/alloy/issues/1732))
36+
- Release 0.7.2 ([#1729](https://github.com/alloy-rs/alloy/issues/1729))
37+
38+
## [0.7.0](https://github.com/alloy-rs/alloy/releases/tag/v0.7.0) - 2024-11-28
39+
40+
### Bug Fixes
41+
42+
- Pass slice to RlpReceipt::rlp_decode_fields ([#1696](https://github.com/alloy-rs/alloy/issues/1696))
43+
- [`consensus`] Serde aliases to avoid breaking changes ([#1654](https://github.com/alloy-rs/alloy/issues/1654))
44+
45+
### Features
46+
2147
- EIP-7742 ([#1600](https://github.com/alloy-rs/alloy/issues/1600))
2248
- Add parent_num_hash to BlockHeader ([#1687](https://github.com/alloy-rs/alloy/issues/1687))
2349
- Modifiy ReceiptWithBloom and associated impls to use with Reth ([#1672](https://github.com/alloy-rs/alloy/issues/1672))
@@ -31,7 +57,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3157

3258
### Miscellaneous Tasks
3359

34-
- Release 0.7.2
3560
- Release 0.7.0
3661
- Relax from impl ([#1698](https://github.com/alloy-rs/alloy/issues/1698))
3762
- Make clippy happy ([#1677](https://github.com/alloy-rs/alloy/issues/1677))
@@ -268,6 +293,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
268293
### Miscellaneous Tasks
269294

270295
- Release 0.3.6
296+
297+
## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13
298+
299+
### Miscellaneous Tasks
300+
271301
- Release 0.3.5
272302

273303
## [0.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13
@@ -366,26 +396,50 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
366396

367397
## [0.1.4](https://github.com/alloy-rs/alloy/releases/tag/v0.1.4) - 2024-07-08
368398

399+
### Features
400+
401+
- Impl Transaction for TxEnvelope ([#1006](https://github.com/alloy-rs/alloy/issues/1006))
402+
403+
### Miscellaneous Tasks
404+
405+
- Release 0.1.4
406+
407+
### Other
408+
409+
- Remove signature.v parity before calculating tx hash ([#893](https://github.com/alloy-rs/alloy/issues/893))
410+
411+
## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25
412+
369413
### Documentation
370414

371415
- Copy/paste error of eip-7251 link ([#961](https://github.com/alloy-rs/alloy/issues/961))
372416

373417
### Features
374418

375-
- Impl Transaction for TxEnvelope ([#1006](https://github.com/alloy-rs/alloy/issues/1006))
376419
- Add eip-7702 helpers ([#950](https://github.com/alloy-rs/alloy/issues/950))
377420

378421
### Miscellaneous Tasks
379422

380-
- Release 0.1.4
381423
- Release 0.1.3
382424
- [eips] Make `sha2` optional, add `kzg-sidecar` feature ([#949](https://github.com/alloy-rs/alloy/issues/949))
383425

384-
### Other
426+
## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19
385427

386-
- Remove signature.v parity before calculating tx hash ([#893](https://github.com/alloy-rs/alloy/issues/893))
428+
### Documentation
387429

388-
## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19
430+
- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914))
431+
432+
### Features
433+
434+
- Add eip-7251 consolidation request ([#919](https://github.com/alloy-rs/alloy/issues/919))
435+
436+
### Miscellaneous Tasks
437+
438+
- Release 0.1.2
439+
- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922))
440+
- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917))
441+
442+
## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17
389443

390444
### Bug Fixes
391445

@@ -414,12 +468,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
414468

415469
### Documentation
416470

417-
- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914))
418471
- Update descriptions and top level summary ([#128](https://github.com/alloy-rs/alloy/issues/128))
419472

420473
### Features
421474

422-
- Add eip-7251 consolidation request ([#919](https://github.com/alloy-rs/alloy/issues/919))
423475
- Derive serde for header ([#902](https://github.com/alloy-rs/alloy/issues/902))
424476
- Move `{,With}OtherFields` to serde crate ([#892](https://github.com/alloy-rs/alloy/issues/892))
425477
- Add as_ is_ functions to envelope ([#872](https://github.com/alloy-rs/alloy/issues/872))
@@ -456,9 +508,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
456508

457509
### Miscellaneous Tasks
458510

459-
- Release 0.1.2
460-
- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922))
461-
- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917))
462511
- [clippy] Apply lint suggestions ([#903](https://github.com/alloy-rs/alloy/issues/903))
463512
- Rm unused txtype mod ([#879](https://github.com/alloy-rs/alloy/issues/879))
464513
- [other] Use type aliases where possible to improve clarity ([#859](https://github.com/alloy-rs/alloy/issues/859))

0 commit comments

Comments
 (0)