Skip to content

Commit 4545172

Browse files
committed
chore: release 0.3.4
1 parent e7ea61d commit 4545172

File tree

36 files changed

+346
-1
lines changed

36 files changed

+346
-1
lines changed

CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,35 @@ 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.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13
9+
10+
### Bug Fixes
11+
12+
- `debug_traceCallMany` and `trace_callMany` ([#1278](https://github.com/alloy-rs/alloy/issues/1278))
13+
- Serde for `eth_simulateV1` ([#1273](https://github.com/alloy-rs/alloy/issues/1273))
14+
15+
### Features
16+
17+
- [engine] Optional Serde ([#1283](https://github.com/alloy-rs/alloy/issues/1283))
18+
- [alloy-rpc-types-eth] Optional serde ([#1276](https://github.com/alloy-rs/alloy/issues/1276))
19+
- Improve node bindings ([#1279](https://github.com/alloy-rs/alloy/issues/1279))
20+
- Add serde for NumHash ([#1277](https://github.com/alloy-rs/alloy/issues/1277))
21+
- [engine] No_std engine types ([#1268](https://github.com/alloy-rs/alloy/issues/1268))
22+
- No_std eth rpc types ([#1252](https://github.com/alloy-rs/alloy/issues/1252))
23+
24+
### Miscellaneous Tasks
25+
26+
- Remove eth rpc types dep from engine types ([#1280](https://github.com/alloy-rs/alloy/issues/1280))
27+
- Swap `BlockHashOrNumber` alias and struct name ([#1270](https://github.com/alloy-rs/alloy/issues/1270))
28+
- [consensus] Remove Header Method ([#1271](https://github.com/alloy-rs/alloy/issues/1271))
29+
- [consensus] Alloc by Default ([#1272](https://github.com/alloy-rs/alloy/issues/1272))
30+
- [network-primitives] Remove alloc Vec Dep ([#1267](https://github.com/alloy-rs/alloy/issues/1267))
31+
32+
### Other
33+
34+
- Add trait methods `cumulative_gas_used` and `state_root` to `ReceiptResponse` ([#1275](https://github.com/alloy-rs/alloy/issues/1275))
35+
- Implement `seal` helper for `Header` ([#1269](https://github.com/alloy-rs/alloy/issues/1269))
36+
837
## [0.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
938

1039
### Bug Fixes
@@ -17,6 +46,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1746

1847
### Miscellaneous Tasks
1948

49+
- Release 0.3.3
2050
- Require destination for 7702 ([#1262](https://github.com/alloy-rs/alloy/issues/1262))
2151
- Swap BlockNumHash alias and struct name ([#1265](https://github.com/alloy-rs/alloy/issues/1265))
2252

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.3.3"
6+
version = "0.3.4"
77
edition = "2021"
88
rust-version = "1.79"
99
authors = ["Alloy Contributors"]

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.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.3.3
13+
814
## [0.3.2](https://github.com/alloy-rs/alloy/releases/tag/v0.3.2) - 2024-09-09
915

1016
### Miscellaneous Tasks

crates/consensus/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.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13
9+
10+
### Miscellaneous Tasks
11+
12+
- [consensus] Remove Header Method ([#1271](https://github.com/alloy-rs/alloy/issues/1271))
13+
- [consensus] Alloc by Default ([#1272](https://github.com/alloy-rs/alloy/issues/1272))
14+
15+
### Other
16+
17+
- Implement `seal` helper for `Header` ([#1269](https://github.com/alloy-rs/alloy/issues/1269))
18+
819
## [0.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
920

1021
### Miscellaneous Tasks
1122

23+
- Release 0.3.3
1224
- Require destination for 7702 ([#1262](https://github.com/alloy-rs/alloy/issues/1262))
1325

1426
### Other

crates/contract/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.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13
9+
10+
### Features
11+
12+
- [alloy-rpc-types-eth] Optional serde ([#1276](https://github.com/alloy-rs/alloy/issues/1276))
13+
14+
## [0.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.3.3
19+
820
## [0.3.2](https://github.com/alloy-rs/alloy/releases/tag/v0.3.2) - 2024-09-09
921

1022
### Miscellaneous Tasks

crates/eip7547/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.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13
9+
10+
### Features
11+
12+
- [engine] Optional Serde ([#1283](https://github.com/alloy-rs/alloy/issues/1283))
13+
14+
## [0.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.3.3
19+
820
## [0.3.2](https://github.com/alloy-rs/alloy/releases/tag/v0.3.2) - 2024-09-09
921

1022
### Miscellaneous Tasks

crates/eips/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,21 @@ 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.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13
9+
10+
### Features
11+
12+
- Add serde for NumHash ([#1277](https://github.com/alloy-rs/alloy/issues/1277))
13+
14+
### Miscellaneous Tasks
15+
16+
- Swap `BlockHashOrNumber` alias and struct name ([#1270](https://github.com/alloy-rs/alloy/issues/1270))
17+
818
## [0.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
919

1020
### Miscellaneous Tasks
1121

22+
- Release 0.3.3
1223
- Swap BlockNumHash alias and struct name ([#1265](https://github.com/alloy-rs/alloy/issues/1265))
1324

1425
## [0.3.2](https://github.com/alloy-rs/alloy/releases/tag/v0.3.2) - 2024-09-09

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.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.3.3
13+
814
## [0.3.2](https://github.com/alloy-rs/alloy/releases/tag/v0.3.2) - 2024-09-09
915

1016
### Miscellaneous Tasks

crates/json-rpc/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.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.3.3
13+
814
## [0.3.2](https://github.com/alloy-rs/alloy/releases/tag/v0.3.2) - 2024-09-09
915

1016
### Miscellaneous Tasks

crates/network-primitives/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -5,6 +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.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13
9+
10+
### Miscellaneous Tasks
11+
12+
- [network-primitives] Remove alloc Vec Dep ([#1267](https://github.com/alloy-rs/alloy/issues/1267))
13+
14+
### Other
15+
16+
- Add trait methods `cumulative_gas_used` and `state_root` to `ReceiptResponse` ([#1275](https://github.com/alloy-rs/alloy/issues/1275))
17+
18+
## [0.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
19+
20+
### Miscellaneous Tasks
21+
22+
- Release 0.3.3
23+
824
## [0.3.2](https://github.com/alloy-rs/alloy/releases/tag/v0.3.2) - 2024-09-09
925

1026
### Features

crates/network/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.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13
9+
10+
### Features
11+
12+
- [alloy-rpc-types-eth] Optional serde ([#1276](https://github.com/alloy-rs/alloy/issues/1276))
13+
14+
## [0.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.3.3
19+
820
## [0.3.2](https://github.com/alloy-rs/alloy/releases/tag/v0.3.2) - 2024-09-09
921

1022
### Miscellaneous Tasks

crates/node-bindings/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -5,8 +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.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13
9+
10+
### Bug Fixes
11+
12+
- `debug_traceCallMany` and `trace_callMany` ([#1278](https://github.com/alloy-rs/alloy/issues/1278))
13+
14+
### Features
15+
16+
- Improve node bindings ([#1279](https://github.com/alloy-rs/alloy/issues/1279))
17+
818
## [0.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
919

20+
### Miscellaneous Tasks
21+
22+
- Release 0.3.3
23+
1024
### Testing
1125

1226
- Dont use fork test ([#1263](https://github.com/alloy-rs/alloy/issues/1263))

crates/provider/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,25 @@ 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.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13
9+
10+
### Bug Fixes
11+
12+
- `debug_traceCallMany` and `trace_callMany` ([#1278](https://github.com/alloy-rs/alloy/issues/1278))
13+
- Serde for `eth_simulateV1` ([#1273](https://github.com/alloy-rs/alloy/issues/1273))
14+
15+
### Features
16+
17+
- [engine] Optional Serde ([#1283](https://github.com/alloy-rs/alloy/issues/1283))
18+
- [alloy-rpc-types-eth] Optional serde ([#1276](https://github.com/alloy-rs/alloy/issues/1276))
19+
- Improve node bindings ([#1279](https://github.com/alloy-rs/alloy/issues/1279))
20+
21+
## [0.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
22+
23+
### Miscellaneous Tasks
24+
25+
- Release 0.3.3
26+
827
## [0.3.2](https://github.com/alloy-rs/alloy/releases/tag/v0.3.2) - 2024-09-09
928

1029
### Miscellaneous Tasks

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.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.3.3
13+
814
## [0.3.2](https://github.com/alloy-rs/alloy/releases/tag/v0.3.2) - 2024-09-09
915

1016
### Miscellaneous Tasks

crates/rpc-client/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.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13
9+
10+
### Features
11+
12+
- Improve node bindings ([#1279](https://github.com/alloy-rs/alloy/issues/1279))
13+
14+
## [0.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.3.3
19+
820
## [0.3.2](https://github.com/alloy-rs/alloy/releases/tag/v0.3.2) - 2024-09-09
921

1022
### Dependencies

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.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.3.3
13+
814
## [0.3.2](https://github.com/alloy-rs/alloy/releases/tag/v0.3.2) - 2024-09-09
915

1016
### Miscellaneous Tasks

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.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.3.3
13+
814
## [0.3.2](https://github.com/alloy-rs/alloy/releases/tag/v0.3.2) - 2024-09-09
915

1016
### Miscellaneous Tasks

crates/rpc-types-beacon/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.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13
9+
10+
### Features
11+
12+
- [engine] Optional Serde ([#1283](https://github.com/alloy-rs/alloy/issues/1283))
13+
14+
## [0.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.3.3
19+
820
## [0.3.2](https://github.com/alloy-rs/alloy/releases/tag/v0.3.2) - 2024-09-09
921

1022
### Miscellaneous Tasks

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.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.3.3
13+
814
## [0.3.2](https://github.com/alloy-rs/alloy/releases/tag/v0.3.2) - 2024-09-09
915

1016
### Miscellaneous Tasks

crates/rpc-types-engine/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.3.4](https://github.com/alloy-rs/alloy/releases/tag/v0.3.4) - 2024-09-13
9+
10+
### Features
11+
12+
- [engine] Optional Serde ([#1283](https://github.com/alloy-rs/alloy/issues/1283))
13+
- [engine] No_std engine types ([#1268](https://github.com/alloy-rs/alloy/issues/1268))
14+
15+
### Miscellaneous Tasks
16+
17+
- Remove eth rpc types dep from engine types ([#1280](https://github.com/alloy-rs/alloy/issues/1280))
18+
19+
## [0.3.3](https://github.com/alloy-rs/alloy/releases/tag/v0.3.3) - 2024-09-10
20+
21+
### Miscellaneous Tasks
22+
23+
- Release 0.3.3
24+
825
## [0.3.2](https://github.com/alloy-rs/alloy/releases/tag/v0.3.2) - 2024-09-09
926

1027
### Features

0 commit comments

Comments
 (0)