Skip to content

Commit 86b46b9

Browse files
committed
chore: release 0.9.1
1 parent 5f2bdc2 commit 86b46b9

File tree

39 files changed

+350
-1
lines changed

39 files changed

+350
-1
lines changed

Diff for: CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
9+
10+
### Features
11+
12+
- Add deref for block ([#1868](https://github.com/alloy-rs/alloy/issues/1868))
13+
- Add helper for txpool inspect summary ([#1866](https://github.com/alloy-rs/alloy/issues/1866))
14+
15+
### Miscellaneous Tasks
16+
17+
- Add arbitrary for blockbody ([#1867](https://github.com/alloy-rs/alloy/issues/1867))
18+
- Add history serve window ([#1865](https://github.com/alloy-rs/alloy/issues/1865))
19+
820
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
921

1022
### Bug Fixes
@@ -43,6 +55,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4355

4456
### Miscellaneous Tasks
4557

58+
- Release 0.9.0
4659
- Rm unused alloy-signer dep ([#1862](https://github.com/alloy-rs/alloy/issues/1862))
4760
- Simplify Service impls ([#1861](https://github.com/alloy-rs/alloy/issues/1861))
4861
- Make clippy happy ([#1849](https://github.com/alloy-rs/alloy/issues/1849))

Diff for: Cargo.toml

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

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

Diff for: crates/alloy/CHANGELOG.md

+6
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+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.9.0
13+
814
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
915

1016
### Miscellaneous Tasks

Diff for: crates/consensus-any/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ 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.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
9+
10+
### Bug Fixes
11+
12+
- Use u64 for all gas values ([#1848](https://github.com/alloy-rs/alloy/issues/1848))
13+
14+
### Features
15+
16+
- [pectra] Revert EIP-7742 ([#1807](https://github.com/alloy-rs/alloy/issues/1807))
17+
- Add tryfrom for anyheader to header ([#1826](https://github.com/alloy-rs/alloy/issues/1826))
18+
19+
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
20+
21+
### Miscellaneous Tasks
22+
23+
- Release 0.8.3
24+
825
## [0.8.2](https://github.com/alloy-rs/alloy/releases/tag/v0.8.2) - 2024-12-19
926

1027
### Miscellaneous Tasks

Diff for: crates/consensus/CHANGELOG.md

+43
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,55 @@ 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.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
9+
10+
### Features
11+
12+
- Add deref for block ([#1868](https://github.com/alloy-rs/alloy/issues/1868))
13+
14+
### Miscellaneous Tasks
15+
16+
- Add arbitrary for blockbody ([#1867](https://github.com/alloy-rs/alloy/issues/1867))
17+
18+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
19+
20+
### Bug Fixes
21+
22+
- Use u64 for all gas values ([#1848](https://github.com/alloy-rs/alloy/issues/1848))
23+
24+
### Features
25+
26+
- Add tryfrom payloadv1 for block ([#1851](https://github.com/alloy-rs/alloy/issues/1851))
27+
- Add match functions ([#1847](https://github.com/alloy-rs/alloy/issues/1847))
28+
- Add BlockConditional ([#1846](https://github.com/alloy-rs/alloy/issues/1846))
29+
- EIP-7840 ([#1828](https://github.com/alloy-rs/alloy/issues/1828))
30+
- Return tagged variant deserde error ([#1810](https://github.com/alloy-rs/alloy/issues/1810))
31+
- [pectra] Revert EIP-7742 ([#1807](https://github.com/alloy-rs/alloy/issues/1807))
32+
- Add map transactions fn ([#1827](https://github.com/alloy-rs/alloy/issues/1827))
33+
- Add helpers for block ([#1816](https://github.com/alloy-rs/alloy/issues/1816))
34+
- Add helpers to any tx envelope ([#1817](https://github.com/alloy-rs/alloy/issues/1817))
35+
36+
### Miscellaneous Tasks
37+
38+
- Rm unused alloy-signer dep ([#1862](https://github.com/alloy-rs/alloy/issues/1862))
39+
- Rm non exhaustive from ReceiptEnvelope ([#1843](https://github.com/alloy-rs/alloy/issues/1843))
40+
- Rm non exhaustive for envelope ([#1842](https://github.com/alloy-rs/alloy/issues/1842))
41+
- Map header fns ([#1840](https://github.com/alloy-rs/alloy/issues/1840))
42+
43+
### Other
44+
45+
- Change `chain_id` type to `U256` ([#1839](https://github.com/alloy-rs/alloy/issues/1839))
46+
847
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
948

1049
### Features
1150

1251
- Add serde for block ([#1814](https://github.com/alloy-rs/alloy/issues/1814))
1352

53+
### Miscellaneous Tasks
54+
55+
- Release 0.8.3
56+
1457
## [0.8.2](https://github.com/alloy-rs/alloy/releases/tag/v0.8.2) - 2024-12-19
1558

1659
### Bug Fixes

Diff for: crates/contract/CHANGELOG.md

+6
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+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.9.0
13+
814
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
915

1016
### Miscellaneous Tasks

Diff for: crates/eip5792/CHANGELOG.md

+6
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+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.9.0
13+
814
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
915

1016
### Miscellaneous Tasks

Diff for: crates/eip7547/CHANGELOG.md

+6
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+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.9.0
13+
814
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
915

1016
### Miscellaneous Tasks

Diff for: crates/eips/CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,37 @@ 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.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Add history serve window ([#1865](https://github.com/alloy-rs/alloy/issues/1865))
13+
14+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
15+
16+
### Bug Fixes
17+
18+
- [alloy-eips] `SimpleCoder::decode_one()` should return `Ok(None)` ([#1818](https://github.com/alloy-rs/alloy/issues/1818))
19+
20+
### Features
21+
22+
- EIP-7840 ([#1828](https://github.com/alloy-rs/alloy/issues/1828))
23+
- [pectra] Revert EIP-7742 ([#1807](https://github.com/alloy-rs/alloy/issues/1807))
24+
25+
### Other
26+
27+
- [Feature] update Display implementation on BlockNumberOrTag ([#1857](https://github.com/alloy-rs/alloy/issues/1857))
28+
- [Bug] Request predeploy codes have diverged ([#1845](https://github.com/alloy-rs/alloy/issues/1845))
29+
- Update contract bytecode & address ([#1838](https://github.com/alloy-rs/alloy/issues/1838))
30+
- Update `CONSOLIDATION_REQUEST_PREDEPLOY_ADDRESS` ([#1836](https://github.com/alloy-rs/alloy/issues/1836))
31+
- Update `WITHDRAWAL_REQUEST_PREDEPLOY_ADDRESS` ([#1834](https://github.com/alloy-rs/alloy/issues/1834))
32+
33+
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
34+
35+
### Miscellaneous Tasks
36+
37+
- Release 0.8.3
38+
839
## [0.8.2](https://github.com/alloy-rs/alloy/releases/tag/v0.8.2) - 2024-12-19
940

1041
### Miscellaneous Tasks

Diff for: crates/genesis/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515

1616
- EIP-7840 ([#1828](https://github.com/alloy-rs/alloy/issues/1828))
1717

18+
### Miscellaneous Tasks
19+
20+
- Release 0.9.0
21+
1822
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
1923

2024
### Miscellaneous Tasks

Diff for: crates/json-rpc/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Simplify Service impls ([#1861](https://github.com/alloy-rs/alloy/issues/1861))
13+
14+
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.8.3
19+
820
## [0.8.2](https://github.com/alloy-rs/alloy/releases/tag/v0.8.2) - 2024-12-19
921

1022
### Miscellaneous Tasks

Diff for: crates/network-primitives/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ 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.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
9+
10+
### Bug Fixes
11+
12+
- Use u64 for all gas values ([#1848](https://github.com/alloy-rs/alloy/issues/1848))
13+
14+
### Features
15+
16+
- Add more builder style fns ([#1850](https://github.com/alloy-rs/alloy/issues/1850))
17+
- Add map transactions to rpc block type ([#1835](https://github.com/alloy-rs/alloy/issues/1835))
18+
19+
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
20+
21+
### Miscellaneous Tasks
22+
23+
- Release 0.8.3
24+
825
## [0.8.2](https://github.com/alloy-rs/alloy/releases/tag/v0.8.2) - 2024-12-19
926

1027
### Miscellaneous Tasks

Diff for: crates/network/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1515

1616
- Add helpers to any tx envelope ([#1817](https://github.com/alloy-rs/alloy/issues/1817))
1717

18+
### Miscellaneous Tasks
19+
20+
- Release 0.9.0
21+
1822
### Other
1923

2024
- Change `chain_id` type to `U256` ([#1839](https://github.com/alloy-rs/alloy/issues/1839))

Diff for: crates/node-bindings/CHANGELOG.md

+6
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+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.9.0
13+
814
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
915

1016
### Miscellaneous Tasks

Diff for: crates/provider/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

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

14+
### Miscellaneous Tasks
15+
16+
- Release 0.9.0
17+
1418
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
1519

1620
### Miscellaneous Tasks

Diff for: crates/pubsub/CHANGELOG.md

+6
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+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.9.0
13+
814
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
915

1016
### Miscellaneous Tasks

Diff for: crates/rpc-client/CHANGELOG.md

+6
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+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.9.0
13+
814
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
915

1016
### Miscellaneous Tasks

Diff for: crates/rpc-types-admin/CHANGELOG.md

+6
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+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.9.0
13+
814
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
915

1016
### Miscellaneous Tasks

Diff for: crates/rpc-types-anvil/CHANGELOG.md

+6
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+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.9.0
13+
814
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
915

1016
### Miscellaneous Tasks

Diff for: crates/rpc-types-any/CHANGELOG.md

+6
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+
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.8.3
13+
814
## [0.8.2](https://github.com/alloy-rs/alloy/releases/tag/v0.8.2) - 2024-12-19
915

1016
### Miscellaneous Tasks

Diff for: crates/rpc-types-beacon/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
- [pectra] Revert EIP-7742 ([#1807](https://github.com/alloy-rs/alloy/issues/1807))
1313

14+
### Miscellaneous Tasks
15+
16+
- Release 0.9.0
17+
1418
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
1519

1620
### Miscellaneous Tasks

Diff for: crates/rpc-types-debug/CHANGELOG.md

+6
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+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.9.0
13+
814
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
915

1016
### Miscellaneous Tasks

Diff for: crates/rpc-types-engine/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717
- Add tryfrom payloadv1 for block ([#1851](https://github.com/alloy-rs/alloy/issues/1851))
1818
- [pectra] Revert EIP-7742 ([#1807](https://github.com/alloy-rs/alloy/issues/1807))
1919

20+
### Miscellaneous Tasks
21+
22+
- Release 0.9.0
23+
2024
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20
2125

2226
### Miscellaneous Tasks

0 commit comments

Comments
 (0)