Skip to content

Commit 5c6defe

Browse files
committed
chore: release 1.0.1
1 parent 6a7fc28 commit 5c6defe

File tree

40 files changed

+1217
-239
lines changed

40 files changed

+1217
-239
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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+
## [1.0.1](https://github.com/alloy-rs/alloy/releases/tag/v1.0.1) - 2025-05-13
9+
10+
### Other
11+
12+
- Revert "feat(`provider`)!: `Fillers` tuple ([#2261](https://github.com/alloy-rs/alloy/issues/2261))" ([#2443](https://github.com/alloy-rs/alloy/issues/2443))
13+
814
## [1.0.0](https://github.com/alloy-rs/alloy/releases/tag/v1.0.0) - 2025-05-13
915

1016
### Bug Fixes
@@ -36,6 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3642

3743
### Miscellaneous Tasks
3844

45+
- Release 1.0.0
3946
- Fix warnings ([#2441](https://github.com/alloy-rs/alloy/issues/2441))
4047
- Remove shadowed recovery fn ([#2438](https://github.com/alloy-rs/alloy/issues/2438))
4148

@@ -950,6 +957,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
950957

951958
## [0.7.3](https://github.com/alloy-rs/alloy/releases/tag/v0.7.3) - 2024-12-05
952959

960+
### Miscellaneous Tasks
961+
962+
- Release 0.7.3
963+
964+
## [Unreleased](https://github.com/alloy-rs/alloy/compare/v0.7.0...HEAD)
965+
953966
### Bug Fixes
954967

955968
- Wrong func sig ([#1742](https://github.com/alloy-rs/alloy/issues/1742))
@@ -986,7 +999,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
986999

9871000
### Miscellaneous Tasks
9881001

989-
- Release 0.7.3
9901002
- Export storage root fns ([#1756](https://github.com/alloy-rs/alloy/issues/1756))
9911003
- Re-export stateroot fns ([#1753](https://github.com/alloy-rs/alloy/issues/1753))
9921004
- Display instead of Debug the response JSON ([#1748](https://github.com/alloy-rs/alloy/issues/1748))

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 = "1.0.0"
6+
version = "1.0.1"
77
edition = "2021"
88
rust-version = "1.82"
99
authors = ["Alloy Contributors"]

crates/alloy/CHANGELOG.md

Lines changed: 33 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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+
## [1.0.0](https://github.com/alloy-rs/alloy/releases/tag/v1.0.0) - 2025-05-13
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.0.0
13+
814
## [0.15.11](https://github.com/alloy-rs/alloy/releases/tag/v0.15.11) - 2025-05-12
915

1016
### Miscellaneous Tasks
@@ -203,6 +209,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
203209
### Miscellaneous Tasks
204210

205211
- Release 0.7.3
212+
213+
## [Unreleased](https://github.com/alloy-rs/alloy/compare/v0.7.0...HEAD)
214+
215+
### Miscellaneous Tasks
216+
206217
- Release 0.7.2 ([#1729](https://github.com/alloy-rs/alloy/issues/1729))
207218

208219
## [0.7.0](https://github.com/alloy-rs/alloy/releases/tag/v0.7.0) - 2024-11-28
@@ -363,25 +374,44 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
363374
### Features
364375

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

369378
### Miscellaneous Tasks
370379

371380
- Release 0.1.4
372381
- Release 0.1.3 (-p alloy)
382+
383+
## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25
384+
385+
### Features
386+
387+
- [alloy] Forward `rustls` & `native` reqwest TLS configuration to Alloy's metacrate ([#969](https://github.com/alloy-rs/alloy/issues/969))
388+
- Add eip-7702 helpers ([#950](https://github.com/alloy-rs/alloy/issues/950))
389+
390+
### Miscellaneous Tasks
391+
373392
- Add more features to meta crate ([#953](https://github.com/alloy-rs/alloy/issues/953))
374393

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

396+
### Documentation
397+
398+
- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914))
399+
400+
### Miscellaneous Tasks
401+
402+
- Release 0.1.2
403+
- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922))
404+
- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917))
405+
406+
## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17
407+
377408
### Bug Fixes
378409

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

382413
### Documentation
383414

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

387417
### Features
@@ -402,9 +432,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
402432

403433
### Miscellaneous Tasks
404434

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

crates/consensus-any/CHANGELOG.md

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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+
## [1.0.0](https://github.com/alloy-rs/alloy/releases/tag/v1.0.0) - 2025-05-13
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.0.0
13+
814
## [0.15.11](https://github.com/alloy-rs/alloy/releases/tag/v0.15.11) - 2025-05-12
915

1016
### Miscellaneous Tasks
@@ -173,6 +179,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
173179

174180
## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
175181

182+
### Miscellaneous Tasks
183+
184+
- Release 0.9.1
185+
186+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
187+
176188
### Bug Fixes
177189

178190
- Use u64 for all gas values ([#1848](https://github.com/alloy-rs/alloy/issues/1848))
@@ -182,10 +194,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
182194
- [pectra] Revert EIP-7742 ([#1807](https://github.com/alloy-rs/alloy/issues/1807))
183195
- Add tryfrom for anyheader to header ([#1826](https://github.com/alloy-rs/alloy/issues/1826))
184196

185-
### Miscellaneous Tasks
186-
187-
- Release 0.9.1
188-
189197
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
190198

191199
### Miscellaneous Tasks
@@ -212,6 +220,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
212220

213221
## [0.7.3](https://github.com/alloy-rs/alloy/releases/tag/v0.7.3) - 2024-12-05
214222

223+
### Miscellaneous Tasks
224+
225+
- Release 0.7.3
226+
227+
## [Unreleased](https://github.com/alloy-rs/alloy/compare/v0.7.0...HEAD)
228+
215229
### Bug Fixes
216230

217231
- Remove `Borrow` impl for RPC receipt ([#1721](https://github.com/alloy-rs/alloy/issues/1721))
@@ -222,7 +236,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
222236

223237
### Miscellaneous Tasks
224238

225-
- Release 0.7.3
226239
- Release 0.7.2 ([#1729](https://github.com/alloy-rs/alloy/issues/1729))
227240

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

crates/consensus/CHANGELOG.md

Lines changed: 71 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414

1515
### Miscellaneous Tasks
1616

17+
- Release 1.0.0
1718
- Remove shadowed recovery fn ([#2438](https://github.com/alloy-rs/alloy/issues/2438))
1819

1920
## [0.15.11](https://github.com/alloy-rs/alloy/releases/tag/v0.15.11) - 2025-05-12
@@ -367,13 +368,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
367368

368369
## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
369370

371+
### Features
372+
373+
- Add deref for block ([#1868](https://github.com/alloy-rs/alloy/issues/1868))
374+
375+
### Miscellaneous Tasks
376+
377+
- Release 0.9.1
378+
- Add arbitrary for blockbody ([#1867](https://github.com/alloy-rs/alloy/issues/1867))
379+
380+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
381+
370382
### Bug Fixes
371383

372384
- Use u64 for all gas values ([#1848](https://github.com/alloy-rs/alloy/issues/1848))
373385

374386
### Features
375387

376-
- Add deref for block ([#1868](https://github.com/alloy-rs/alloy/issues/1868))
377388
- Add tryfrom payloadv1 for block ([#1851](https://github.com/alloy-rs/alloy/issues/1851))
378389
- Add match functions ([#1847](https://github.com/alloy-rs/alloy/issues/1847))
379390
- Add BlockConditional ([#1846](https://github.com/alloy-rs/alloy/issues/1846))
@@ -386,8 +397,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
386397

387398
### Miscellaneous Tasks
388399

389-
- Release 0.9.1
390-
- Add arbitrary for blockbody ([#1867](https://github.com/alloy-rs/alloy/issues/1867))
391400
- Rm unused alloy-signer dep ([#1862](https://github.com/alloy-rs/alloy/issues/1862))
392401
- Rm non exhaustive from ReceiptEnvelope ([#1843](https://github.com/alloy-rs/alloy/issues/1843))
393402
- Rm non exhaustive for envelope ([#1842](https://github.com/alloy-rs/alloy/issues/1842))
@@ -460,11 +469,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
460469

461470
## [0.7.3](https://github.com/alloy-rs/alloy/releases/tag/v0.7.3) - 2024-12-05
462471

472+
### Miscellaneous Tasks
473+
474+
- Release 0.7.3
475+
476+
## [Unreleased](https://github.com/alloy-rs/alloy/compare/v0.7.0...HEAD)
477+
463478
### Bug Fixes
464479

465480
- Adjust EIP-7742 to latest spec ([#1713](https://github.com/alloy-rs/alloy/issues/1713))
466-
- Pass slice to RlpReceipt::rlp_decode_fields ([#1696](https://github.com/alloy-rs/alloy/issues/1696))
467-
- [`consensus`] Serde aliases to avoid breaking changes ([#1654](https://github.com/alloy-rs/alloy/issues/1654))
468481

469482
### Documentation
470483

@@ -480,6 +493,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
480493
- Receipt root fn ([#1708](https://github.com/alloy-rs/alloy/issues/1708))
481494
- Impl `Encodable2718` for `ReceiptWithBloom` ([#1719](https://github.com/alloy-rs/alloy/issues/1719))
482495
- Add blob_gas_used ([#1704](https://github.com/alloy-rs/alloy/issues/1704))
496+
497+
### Miscellaneous Tasks
498+
499+
- Export storage root fns ([#1756](https://github.com/alloy-rs/alloy/issues/1756))
500+
- Re-export stateroot fns ([#1753](https://github.com/alloy-rs/alloy/issues/1753))
501+
- Rm redundant generic ([#1737](https://github.com/alloy-rs/alloy/issues/1737))
502+
- Relax ommers root fn ([#1736](https://github.com/alloy-rs/alloy/issues/1736))
503+
- Add missing from impl ([#1732](https://github.com/alloy-rs/alloy/issues/1732))
504+
- Release 0.7.2 ([#1729](https://github.com/alloy-rs/alloy/issues/1729))
505+
506+
## [0.7.0](https://github.com/alloy-rs/alloy/releases/tag/v0.7.0) - 2024-11-28
507+
508+
### Bug Fixes
509+
510+
- Pass slice to RlpReceipt::rlp_decode_fields ([#1696](https://github.com/alloy-rs/alloy/issues/1696))
511+
- [`consensus`] Serde aliases to avoid breaking changes ([#1654](https://github.com/alloy-rs/alloy/issues/1654))
512+
513+
### Features
514+
483515
- EIP-7742 ([#1600](https://github.com/alloy-rs/alloy/issues/1600))
484516
- Add parent_num_hash to BlockHeader ([#1687](https://github.com/alloy-rs/alloy/issues/1687))
485517
- Modifiy ReceiptWithBloom and associated impls to use with Reth ([#1672](https://github.com/alloy-rs/alloy/issues/1672))
@@ -493,13 +525,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
493525

494526
### Miscellaneous Tasks
495527

496-
- Release 0.7.3
497-
- Export storage root fns ([#1756](https://github.com/alloy-rs/alloy/issues/1756))
498-
- Re-export stateroot fns ([#1753](https://github.com/alloy-rs/alloy/issues/1753))
499-
- Rm redundant generic ([#1737](https://github.com/alloy-rs/alloy/issues/1737))
500-
- Relax ommers root fn ([#1736](https://github.com/alloy-rs/alloy/issues/1736))
501-
- Add missing from impl ([#1732](https://github.com/alloy-rs/alloy/issues/1732))
502-
- Release 0.7.2 ([#1729](https://github.com/alloy-rs/alloy/issues/1729))
503528
- Release 0.7.0
504529
- Relax from impl ([#1698](https://github.com/alloy-rs/alloy/issues/1698))
505530
- Make clippy happy ([#1677](https://github.com/alloy-rs/alloy/issues/1677))
@@ -736,6 +761,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
736761
### Miscellaneous Tasks
737762

738763
- Release 0.3.6
764+
765+
## [0.3.5](https://github.com/alloy-rs/alloy/releases/tag/v0.3.5) - 2024-09-13
766+
767+
### Miscellaneous Tasks
768+
739769
- Release 0.3.5
740770

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

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

867+
### Features
868+
869+
- Impl Transaction for TxEnvelope ([#1006](https://github.com/alloy-rs/alloy/issues/1006))
870+
871+
### Miscellaneous Tasks
872+
873+
- Release 0.1.4
874+
875+
### Other
876+
877+
- Remove signature.v parity before calculating tx hash ([#893](https://github.com/alloy-rs/alloy/issues/893))
878+
879+
## [0.1.3](https://github.com/alloy-rs/alloy/releases/tag/v0.1.3) - 2024-06-25
880+
837881
### Documentation
838882

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

841885
### Features
842886

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

846889
### Miscellaneous Tasks
847890

848-
- Release 0.1.4
849891
- Release 0.1.3
850892
- [eips] Make `sha2` optional, add `kzg-sidecar` feature ([#949](https://github.com/alloy-rs/alloy/issues/949))
851893

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

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

856-
## [0.1.2](https://github.com/alloy-rs/alloy/releases/tag/v0.1.2) - 2024-06-19
898+
- Add per-crate changelogs ([#914](https://github.com/alloy-rs/alloy/issues/914))
899+
900+
### Features
901+
902+
- Add eip-7251 consolidation request ([#919](https://github.com/alloy-rs/alloy/issues/919))
903+
904+
### Miscellaneous Tasks
905+
906+
- Release 0.1.2
907+
- Update changelogs for v0.1.1 ([#922](https://github.com/alloy-rs/alloy/issues/922))
908+
- Add docs.rs metadata to all manifests ([#917](https://github.com/alloy-rs/alloy/issues/917))
909+
910+
## [0.1.1](https://github.com/alloy-rs/alloy/releases/tag/v0.1.1) - 2024-06-17
857911

858912
### Bug Fixes
859913

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

883937
### Documentation
884938

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

888941
### Features
889942

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

925977
### Miscellaneous Tasks
926978

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

0 commit comments

Comments
 (0)