Skip to content

Commit 8337e7d

Browse files
committed
chore: release 0.13.0
1 parent c04dbec commit 8337e7d

File tree

39 files changed

+495
-37
lines changed

39 files changed

+495
-37
lines changed

CHANGELOG.md

+56
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,61 @@ 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.13.0](https://github.com/alloy-rs/alloy/releases/tag/v0.13.0) - 2025-03-28
9+
10+
### Bug Fixes
11+
12+
- [`pubsub`] Retry connecting to backend ([#2254](https://github.com/alloy-rs/alloy/issues/2254))
13+
- Use unwrap_or_else for subscribe ([#2233](https://github.com/alloy-rs/alloy/issues/2233))
14+
- [`pubsub`] Fix race condition in ActiveSub ([#2222](https://github.com/alloy-rs/alloy/issues/2222))
15+
- [pubsub] Wrap channel_size with Arc ([#2212](https://github.com/alloy-rs/alloy/issues/2212))
16+
17+
### Dependencies
18+
19+
- [deps] C-kzg 2.0 ([#2240](https://github.com/alloy-rs/alloy/issues/2240))
20+
- [ci] Bump reth and geth to latest ([#2241](https://github.com/alloy-rs/alloy/issues/2241))
21+
22+
### Documentation
23+
24+
- Update reference to MetaMask gas estimation ([#2232](https://github.com/alloy-rs/alloy/issues/2232))
25+
- Suggest running cargo-semver-checks when releasing ([#2226](https://github.com/alloy-rs/alloy/issues/2226))
26+
27+
### Features
28+
29+
- [`provider`] Watch_full_blocks ([#2194](https://github.com/alloy-rs/alloy/issues/2194))
30+
- [`signers`] `Web3Signer` ([#2238](https://github.com/alloy-rs/alloy/issues/2238))
31+
- Add bincode compat for receipt envelope ([#2246](https://github.com/alloy-rs/alloy/issues/2246))
32+
- Eip7594 constants ([#2245](https://github.com/alloy-rs/alloy/issues/2245))
33+
- [`provider`] Subscribe_full_blocks ([#2215](https://github.com/alloy-rs/alloy/issues/2215))
34+
- [`provider`] Eth_signTransaction ([#2236](https://github.com/alloy-rs/alloy/issues/2236))
35+
- [`provider`] Apply `GetSubscription` to trait ([#2220](https://github.com/alloy-rs/alloy/issues/2220))
36+
- [`provider`] `DebugApi` generic over `Network` ([#2211](https://github.com/alloy-rs/alloy/issues/2211))
37+
- Add EIP1186AccountProofResponse::is_empty ([#2224](https://github.com/alloy-rs/alloy/issues/2224))
38+
39+
### Miscellaneous Tasks
40+
41+
- Add error message for reconnect failure ([#2253](https://github.com/alloy-rs/alloy/issues/2253))
42+
- Add error message helper ([#2247](https://github.com/alloy-rs/alloy/issues/2247))
43+
- Expect instead of allow ([#2228](https://github.com/alloy-rs/alloy/issues/2228))
44+
- [`provider`] Use `WeakClient` in `GetSubscription` ([#2219](https://github.com/alloy-rs/alloy/issues/2219))
45+
- Propagate arbitrary feature ([#2227](https://github.com/alloy-rs/alloy/issues/2227))
46+
47+
### Other
48+
49+
- Added input-mut for TxEnvelope ([#2244](https://github.com/alloy-rs/alloy/issues/2244))
50+
- Auto_impl(&) for Encodable2718 ([#2230](https://github.com/alloy-rs/alloy/issues/2230))
51+
- Add more details on FilterSet ([#2229](https://github.com/alloy-rs/alloy/issues/2229))
52+
53+
### Styling
54+
55+
- Add test for 429 error message ([#2231](https://github.com/alloy-rs/alloy/issues/2231))
56+
- Fmt ([#2221](https://github.com/alloy-rs/alloy/issues/2221))
57+
58+
### Testing
59+
60+
- Fix flaky test ([#2248](https://github.com/alloy-rs/alloy/issues/2248))
61+
- Fix inference fail in test ([#2239](https://github.com/alloy-rs/alloy/issues/2239))
62+
863
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
964

1065
### Bug Fixes
@@ -38,6 +93,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3893

3994
### Miscellaneous Tasks
4095

96+
- Release 0.12.6
4197
- [meta] Update CODEOWNERS ([#2213](https://github.com/alloy-rs/alloy/issues/2213))
4298
- [provider] Remove 'latest' channel from heartbeat ([#2198](https://github.com/alloy-rs/alloy/issues/2198))
4399
- Export * from provider ([#2195](https://github.com/alloy-rs/alloy/issues/2195))

Cargo.toml

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

55
[workspace.package]
6-
version = "0.12.6"
6+
version = "0.13.0"
77
edition = "2021"
88
rust-version = "1.81"
99
authors = ["Alloy Contributors"]
@@ -33,42 +33,42 @@ large-enum-variant = "allow"
3333
result-large-err = "allow"
3434

3535
[workspace.dependencies]
36-
alloy-consensus = { version = "0.12", path = "crates/consensus", default-features = false }
37-
alloy-consensus-any = { version = "0.12", path = "crates/consensus-any", default-features = false }
38-
alloy-contract = { version = "0.12", path = "crates/contract", default-features = false }
39-
alloy-eips = { version = "0.12", path = "crates/eips", default-features = false }
40-
alloy-eip7547 = { version = "0.12", path = "crates/eip7547", default-features = false }
41-
alloy-genesis = { version = "0.12", path = "crates/genesis", default-features = false }
42-
alloy-json-rpc = { version = "0.12", path = "crates/json-rpc", default-features = false }
43-
alloy-network = { version = "0.12", path = "crates/network", default-features = false }
44-
alloy-network-primitives = { version = "0.12", path = "crates/network-primitives", default-features = false }
45-
alloy-node-bindings = { version = "0.12", path = "crates/node-bindings", default-features = false }
46-
alloy-provider = { version = "0.12", path = "crates/provider", default-features = false }
47-
alloy-pubsub = { version = "0.12", path = "crates/pubsub", default-features = false }
48-
alloy-rpc-client = { version = "0.12", path = "crates/rpc-client", default-features = false }
49-
alloy-rpc-types-admin = { version = "0.12", path = "crates/rpc-types-admin", default-features = false }
50-
alloy-rpc-types-anvil = { version = "0.12", path = "crates/rpc-types-anvil", default-features = false }
51-
alloy-rpc-types-any = { version = "0.12", path = "crates/rpc-types-any", default-features = false }
52-
alloy-rpc-types-beacon = { version = "0.12", path = "crates/rpc-types-beacon", default-features = false }
53-
alloy-rpc-types-debug = { version = "0.12", path = "crates/rpc-types-debug", default-features = false }
54-
alloy-rpc-types-engine = { version = "0.12", path = "crates/rpc-types-engine", default-features = false }
55-
alloy-rpc-types-eth = { version = "0.12", path = "crates/rpc-types-eth", default-features = false }
56-
alloy-rpc-types-mev = { version = "0.12", path = "crates/rpc-types-mev", default-features = false }
57-
alloy-rpc-types-trace = { version = "0.12", path = "crates/rpc-types-trace", default-features = false }
58-
alloy-rpc-types-txpool = { version = "0.12", path = "crates/rpc-types-txpool", default-features = false }
59-
alloy-rpc-types = { version = "0.12", path = "crates/rpc-types", default-features = false }
60-
alloy-serde = { version = "0.12", path = "crates/serde", default-features = false }
61-
alloy-signer = { version = "0.12", path = "crates/signer", default-features = false }
62-
alloy-signer-aws = { version = "0.12", path = "crates/signer-aws", default-features = false }
63-
alloy-signer-gcp = { version = "0.12", path = "crates/signer-gcp", default-features = false }
64-
alloy-signer-ledger = { version = "0.12", path = "crates/signer-ledger", default-features = false }
65-
alloy-signer-local = { version = "0.12", path = "crates/signer-local", default-features = false }
66-
alloy-signer-trezor = { version = "0.12", path = "crates/signer-trezor", default-features = false }
67-
alloy-transport = { version = "0.12", path = "crates/transport", default-features = false }
68-
alloy-transport-http = { version = "0.12", path = "crates/transport-http", default-features = false }
69-
alloy-transport-ipc = { version = "0.12", path = "crates/transport-ipc", default-features = false }
70-
alloy-transport-ws = { version = "0.12", path = "crates/transport-ws", default-features = false }
71-
alloy-eip5792 = { version = "0.12", path = "crates/eip5792", default-features = false }
36+
alloy-consensus = { version = "0.13", path = "crates/consensus", default-features = false }
37+
alloy-consensus-any = { version = "0.13", path = "crates/consensus-any", default-features = false }
38+
alloy-contract = { version = "0.13", path = "crates/contract", default-features = false }
39+
alloy-eips = { version = "0.13", path = "crates/eips", default-features = false }
40+
alloy-eip7547 = { version = "0.13", path = "crates/eip7547", default-features = false }
41+
alloy-genesis = { version = "0.13", path = "crates/genesis", default-features = false }
42+
alloy-json-rpc = { version = "0.13", path = "crates/json-rpc", default-features = false }
43+
alloy-network = { version = "0.13", path = "crates/network", default-features = false }
44+
alloy-network-primitives = { version = "0.13", path = "crates/network-primitives", default-features = false }
45+
alloy-node-bindings = { version = "0.13", path = "crates/node-bindings", default-features = false }
46+
alloy-provider = { version = "0.13", path = "crates/provider", default-features = false }
47+
alloy-pubsub = { version = "0.13", path = "crates/pubsub", default-features = false }
48+
alloy-rpc-client = { version = "0.13", path = "crates/rpc-client", default-features = false }
49+
alloy-rpc-types-admin = { version = "0.13", path = "crates/rpc-types-admin", default-features = false }
50+
alloy-rpc-types-anvil = { version = "0.13", path = "crates/rpc-types-anvil", default-features = false }
51+
alloy-rpc-types-any = { version = "0.13", path = "crates/rpc-types-any", default-features = false }
52+
alloy-rpc-types-beacon = { version = "0.13", path = "crates/rpc-types-beacon", default-features = false }
53+
alloy-rpc-types-debug = { version = "0.13", path = "crates/rpc-types-debug", default-features = false }
54+
alloy-rpc-types-engine = { version = "0.13", path = "crates/rpc-types-engine", default-features = false }
55+
alloy-rpc-types-eth = { version = "0.13", path = "crates/rpc-types-eth", default-features = false }
56+
alloy-rpc-types-mev = { version = "0.13", path = "crates/rpc-types-mev", default-features = false }
57+
alloy-rpc-types-trace = { version = "0.13", path = "crates/rpc-types-trace", default-features = false }
58+
alloy-rpc-types-txpool = { version = "0.13", path = "crates/rpc-types-txpool", default-features = false }
59+
alloy-rpc-types = { version = "0.13", path = "crates/rpc-types", default-features = false }
60+
alloy-serde = { version = "0.13", path = "crates/serde", default-features = false }
61+
alloy-signer = { version = "0.13", path = "crates/signer", default-features = false }
62+
alloy-signer-aws = { version = "0.13", path = "crates/signer-aws", default-features = false }
63+
alloy-signer-gcp = { version = "0.13", path = "crates/signer-gcp", default-features = false }
64+
alloy-signer-ledger = { version = "0.13", path = "crates/signer-ledger", default-features = false }
65+
alloy-signer-local = { version = "0.13", path = "crates/signer-local", default-features = false }
66+
alloy-signer-trezor = { version = "0.13", path = "crates/signer-trezor", default-features = false }
67+
alloy-transport = { version = "0.13", path = "crates/transport", default-features = false }
68+
alloy-transport-http = { version = "0.13", path = "crates/transport-http", default-features = false }
69+
alloy-transport-ipc = { version = "0.13", path = "crates/transport-ipc", default-features = false }
70+
alloy-transport-ws = { version = "0.13", path = "crates/transport-ws", default-features = false }
71+
alloy-eip5792 = { version = "0.13", path = "crates/eip5792", default-features = false }
7272

7373
alloy-core = { version = "0.8.22", default-features = false }
7474
alloy-dyn-abi = { version = "0.8.22", default-features = false }

crates/alloy/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.13.0](https://github.com/alloy-rs/alloy/releases/tag/v0.13.0) - 2025-03-28
9+
10+
### Miscellaneous Tasks
11+
12+
- Propagate arbitrary feature ([#2227](https://github.com/alloy-rs/alloy/issues/2227))
13+
14+
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.12.6
19+
820
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
921

1022
### Miscellaneous Tasks

crates/consensus-any/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.13.0](https://github.com/alloy-rs/alloy/releases/tag/v0.13.0) - 2025-03-28
9+
10+
### Miscellaneous Tasks
11+
12+
- Propagate arbitrary feature ([#2227](https://github.com/alloy-rs/alloy/issues/2227))
13+
14+
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.12.6
19+
820
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
921

1022
### Miscellaneous Tasks

crates/consensus/CHANGELOG.md

+23
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.13.0](https://github.com/alloy-rs/alloy/releases/tag/v0.13.0) - 2025-03-28
9+
10+
### Features
11+
12+
- Add bincode compat for receipt envelope ([#2246](https://github.com/alloy-rs/alloy/issues/2246))
13+
14+
### Miscellaneous Tasks
15+
16+
- Expect instead of allow ([#2228](https://github.com/alloy-rs/alloy/issues/2228))
17+
- Propagate arbitrary feature ([#2227](https://github.com/alloy-rs/alloy/issues/2227))
18+
19+
### Other
20+
21+
- Added input-mut for TxEnvelope ([#2244](https://github.com/alloy-rs/alloy/issues/2244))
22+
23+
### Testing
24+
25+
- Fix flaky test ([#2248](https://github.com/alloy-rs/alloy/issues/2248))
26+
827
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
928

1029
### Dependencies
@@ -18,6 +37,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1837
- Impl into_transaction TxEnvelope ([#2192](https://github.com/alloy-rs/alloy/issues/2192))
1938
- Add missing U8 conversion ([#2189](https://github.com/alloy-rs/alloy/issues/2189))
2039

40+
### Miscellaneous Tasks
41+
42+
- Release 0.12.6
43+
2144
### Other
2245

2346
- Add encodable and decodable for `Signed<T>` ([#2193](https://github.com/alloy-rs/alloy/issues/2193))

crates/contract/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.13.0](https://github.com/alloy-rs/alloy/releases/tag/v0.13.0) - 2025-03-28
9+
10+
### Miscellaneous Tasks
11+
12+
- Expect instead of allow ([#2228](https://github.com/alloy-rs/alloy/issues/2228))
13+
14+
### Testing
15+
16+
- Fix inference fail in test ([#2239](https://github.com/alloy-rs/alloy/issues/2239))
17+
18+
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
19+
20+
### Miscellaneous Tasks
21+
22+
- Release 0.12.6
23+
824
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
925

1026
### Features

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.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.12.6
13+
814
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
915

1016
### Miscellaneous Tasks

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.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.12.6
13+
814
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
915

1016
### Miscellaneous Tasks

crates/eips/CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ 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.13.0](https://github.com/alloy-rs/alloy/releases/tag/v0.13.0) - 2025-03-28
9+
10+
### Dependencies
11+
12+
- [deps] C-kzg 2.0 ([#2240](https://github.com/alloy-rs/alloy/issues/2240))
13+
14+
### Features
15+
16+
- Eip7594 constants ([#2245](https://github.com/alloy-rs/alloy/issues/2245))
17+
18+
### Miscellaneous Tasks
19+
20+
- Expect instead of allow ([#2228](https://github.com/alloy-rs/alloy/issues/2228))
21+
22+
### Other
23+
24+
- Auto_impl(&) for Encodable2718 ([#2230](https://github.com/alloy-rs/alloy/issues/2230))
25+
826
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
927

1028
### Bug Fixes
@@ -16,6 +34,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1634
- [eips] Serde untagged for EIP-7685 `RequestsOrHash` ([#2216](https://github.com/alloy-rs/alloy/issues/2216))
1735
- Add BlobAndProofV2 ([#2202](https://github.com/alloy-rs/alloy/issues/2202))
1836

37+
### Miscellaneous Tasks
38+
39+
- Release 0.12.6
40+
1941
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
2042

2143
### Bug Fixes

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.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.12.6
13+
814
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
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.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.12.6
13+
814
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
915

1016
### Features

crates/network-primitives/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.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 0.12.6
13+
814
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
915

1016
### Miscellaneous Tasks

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.13.0](https://github.com/alloy-rs/alloy/releases/tag/v0.13.0) - 2025-03-28
9+
10+
### Miscellaneous Tasks
11+
12+
- Expect instead of allow ([#2228](https://github.com/alloy-rs/alloy/issues/2228))
13+
14+
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.12.6
19+
820
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
921

1022
### Miscellaneous Tasks

crates/node-bindings/CHANGELOG.md

+10
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.13.0](https://github.com/alloy-rs/alloy/releases/tag/v0.13.0) - 2025-03-28
9+
10+
### Miscellaneous Tasks
11+
12+
- Expect instead of allow ([#2228](https://github.com/alloy-rs/alloy/issues/2228))
13+
814
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
915

1016
### Bug Fixes
@@ -15,6 +21,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1521

1622
- [`node-bindings`] Anvil typed hardforks ([#2207](https://github.com/alloy-rs/alloy/issues/2207))
1723

24+
### Miscellaneous Tasks
25+
26+
- Release 0.12.6
27+
1828
## [0.12.5](https://github.com/alloy-rs/alloy/releases/tag/v0.12.5) - 2025-03-12
1929

2030
### Miscellaneous Tasks

0 commit comments

Comments
 (0)