Skip to content

Commit 7259b76

Browse files
committed
chore: release 0.9.2
1 parent 3990ecb commit 7259b76

File tree

39 files changed

+256
-1
lines changed

39 files changed

+256
-1
lines changed

Diff for: CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03
9+
10+
### Bug Fixes
11+
12+
- [eip7251] Update contract address and bytecode ([#1877](https://github.com/alloy-rs/alloy/issues/1877))
13+
- Skip empty request objects ([#1873](https://github.com/alloy-rs/alloy/issues/1873))
14+
15+
### Features
16+
17+
- Sort and skip empty requests for hash ([#1878](https://github.com/alloy-rs/alloy/issues/1878))
18+
- Add conversions from rpc block to consensus ([#1869](https://github.com/alloy-rs/alloy/issues/1869))
19+
- Add block to payloadv1 ([#1875](https://github.com/alloy-rs/alloy/issues/1875))
20+
- Add block to payloadbodyv1 ([#1874](https://github.com/alloy-rs/alloy/issues/1874))
21+
822
## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
923

1024
### Features
@@ -14,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1428

1529
### Miscellaneous Tasks
1630

31+
- Release 0.9.1
1732
- Add arbitrary for blockbody ([#1867](https://github.com/alloy-rs/alloy/issues/1867))
1833
- Add history serve window ([#1865](https://github.com/alloy-rs/alloy/issues/1865))
1934

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

1016
### Miscellaneous Tasks

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

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

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

10+
### Miscellaneous Tasks
11+
12+
- Release 0.9.1
13+
14+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
15+
1016
### Bug Fixes
1117

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

Diff for: crates/consensus/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Miscellaneous Tasks
1515

16+
- Release 0.9.1
1617
- Add arbitrary for blockbody ([#1867](https://github.com/alloy-rs/alloy/issues/1867))
1718

1819
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30

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

1016
### Miscellaneous Tasks

Diff for: crates/eips/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,22 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03
9+
10+
### Bug Fixes
11+
12+
- [eip7251] Update contract address and bytecode ([#1877](https://github.com/alloy-rs/alloy/issues/1877))
13+
- Skip empty request objects ([#1873](https://github.com/alloy-rs/alloy/issues/1873))
14+
15+
### Features
16+
17+
- Sort and skip empty requests for hash ([#1878](https://github.com/alloy-rs/alloy/issues/1878))
18+
819
## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
920

1021
### Miscellaneous Tasks
1122

23+
- Release 0.9.1
1224
- Add history serve window ([#1865](https://github.com/alloy-rs/alloy/issues/1865))
1325

1426
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30

Diff for: crates/genesis/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.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.9.1
13+
814
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
915

1016
### Bug Fixes

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

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

1010
### Miscellaneous Tasks
1111

12+
- Release 0.9.1
13+
14+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
15+
16+
### Miscellaneous Tasks
17+
1218
- Simplify Service impls ([#1861](https://github.com/alloy-rs/alloy/issues/1861))
1319

1420
## [0.8.3](https://github.com/alloy-rs/alloy/releases/tag/v0.8.3) - 2024-12-20

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

+12
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,20 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03
9+
10+
### Features
11+
12+
- Add conversions from rpc block to consensus ([#1869](https://github.com/alloy-rs/alloy/issues/1869))
13+
814
## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
915

16+
### Miscellaneous Tasks
17+
18+
- Release 0.9.1
19+
20+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
21+
1022
### Bug Fixes
1123

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

Diff for: crates/network/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.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.9.1
13+
814
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
915

1016
### Dependencies

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

1016
### Miscellaneous Tasks

Diff for: crates/provider/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.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.9.1
13+
814
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
915

1016
### Bug Fixes

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

1016
### Features

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

1016
### Miscellaneous Tasks

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

+13
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03
9+
10+
### Features
11+
12+
- Add block to payloadv1 ([#1875](https://github.com/alloy-rs/alloy/issues/1875))
13+
- Add block to payloadbodyv1 ([#1874](https://github.com/alloy-rs/alloy/issues/1874))
14+
15+
## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
16+
17+
### Miscellaneous Tasks
18+
19+
- Release 0.9.1
20+
821
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
922

1023
### Features

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

+12
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,20 @@ 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.2](https://github.com/alloy-rs/alloy/releases/tag/v0.9.2) - 2025-01-03
9+
10+
### Features
11+
12+
- Add conversions from rpc block to consensus ([#1869](https://github.com/alloy-rs/alloy/issues/1869))
13+
814
## [0.9.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
915

16+
### Miscellaneous Tasks
17+
18+
- Release 0.9.1
19+
20+
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
21+
1022
### Bug Fixes
1123

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

Diff for: crates/rpc-types-mev/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.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.9.1
13+
814
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
915

1016
### Miscellaneous Tasks

Diff for: crates/rpc-types-trace/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.1](https://github.com/alloy-rs/alloy/releases/tag/v0.9.1) - 2024-12-30
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.9.1
13+
814
## [0.9.0](https://github.com/alloy-rs/alloy/releases/tag/v0.9.0) - 2024-12-30
915

1016
### Bug Fixes

Diff for: crates/rpc-types-txpool/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
- Add helper for txpool inspect summary ([#1866](https://github.com/alloy-rs/alloy/issues/1866))
1313

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

1620
### Bug Fixes

0 commit comments

Comments
 (0)