Skip to content

Commit a7ec9f1

Browse files
committed
chore: release 0.14.0
1 parent 0314426 commit a7ec9f1

File tree

39 files changed

+451
-38
lines changed

39 files changed

+451
-38
lines changed

Diff for: CHANGELOG.md

+54
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,59 @@ 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.14.0](https://github.com/alloy-rs/alloy/releases/tag/v0.14.0) - 2025-04-09
9+
10+
### Bug Fixes
11+
12+
- Use wasmtimer sleep ([#2287](https://github.com/alloy-rs/alloy/issues/2287))
13+
- `BlobAndProofV2` ([#2283](https://github.com/alloy-rs/alloy/issues/2283))
14+
- Cell proofs in `BlobsBundleV2::take` ([#2281](https://github.com/alloy-rs/alloy/issues/2281))
15+
- Fix docs of input field for different tx ([#2177](https://github.com/alloy-rs/alloy/issues/2177))
16+
17+
### Dependencies
18+
19+
- [deps] Core 1.0 ([#2184](https://github.com/alloy-rs/alloy/issues/2184))
20+
- [deps] Bincode 2.0 ([#2297](https://github.com/alloy-rs/alloy/issues/2297))
21+
- Bump msrv to 1.82 ([#2293](https://github.com/alloy-rs/alloy/issues/2293))
22+
23+
### Documentation
24+
25+
- Update doc on PollerBuilder ([#2268](https://github.com/alloy-rs/alloy/issues/2268))
26+
- Remove outdated doc on PollerBuilder ([#2267](https://github.com/alloy-rs/alloy/issues/2267))
27+
28+
### Features
29+
30+
- Relax ProviderBuilder bounds ([#2276](https://github.com/alloy-rs/alloy/issues/2276))
31+
- Make CachedNonceManager default ([#2289](https://github.com/alloy-rs/alloy/issues/2289))
32+
- Add eth get transaction by sender and nonce ([#2285](https://github.com/alloy-rs/alloy/issues/2285))
33+
- [`provider`] Nonce filler helpers ([#2280](https://github.com/alloy-rs/alloy/issues/2280))
34+
- `ExecutionPayloadEnvelopeV5` ([#2284](https://github.com/alloy-rs/alloy/issues/2284))
35+
- Add `From<TxHash>` for `PendingTxConfig` ([#2282](https://github.com/alloy-rs/alloy/issues/2282))
36+
- [eip4844] Implement `AsRef` and `AsMut` for `TxEip4844` ([#2272](https://github.com/alloy-rs/alloy/issues/2272))
37+
- [`eth-wallet`] Set default signer helper ([#2271](https://github.com/alloy-rs/alloy/issues/2271))
38+
- Add conditional conversions for BlockTransactions ([#2270](https://github.com/alloy-rs/alloy/issues/2270))
39+
- Add bincode compat to eth typed tx ([#2269](https://github.com/alloy-rs/alloy/issues/2269))
40+
- [`consensus`] WithEncoded helpers ([#2266](https://github.com/alloy-rs/alloy/issues/2266))
41+
- Filterset topics extend ([#2258](https://github.com/alloy-rs/alloy/issues/2258))
42+
- Make it easier to configure non u256 topics in filterset ([#2257](https://github.com/alloy-rs/alloy/issues/2257))
43+
44+
### Miscellaneous Tasks
45+
46+
- Add `ancestor_headers` to `ExecutionWitness` ([#2294](https://github.com/alloy-rs/alloy/issues/2294))
47+
- Use target_family instead of arch for wasm cfg ([#2288](https://github.com/alloy-rs/alloy/issues/2288))
48+
- Fixed 404 link ([#2286](https://github.com/alloy-rs/alloy/issues/2286))
49+
- Port transaction envelope bincode compat function ([#2263](https://github.com/alloy-rs/alloy/issues/2263))
50+
- Hide input mut ([#2255](https://github.com/alloy-rs/alloy/issues/2255))
51+
52+
### Styling
53+
54+
- Skip flaky bsc err resp ([#2279](https://github.com/alloy-rs/alloy/issues/2279))
55+
- Added TxType::is_eipxxx fxns ([#2275](https://github.com/alloy-rs/alloy/issues/2275))
56+
57+
### Testing
58+
59+
- Update error handling ([#2277](https://github.com/alloy-rs/alloy/issues/2277))
60+
861
## [0.13.0](https://github.com/alloy-rs/alloy/releases/tag/v0.13.0) - 2025-03-28
962

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

3992
### Miscellaneous Tasks
4093

94+
- Release 0.13.0
4195
- Add error message for reconnect failure ([#2253](https://github.com/alloy-rs/alloy/issues/2253))
4296
- Add error message helper ([#2247](https://github.com/alloy-rs/alloy/issues/2247))
4397
- Expect instead of allow ([#2228](https://github.com/alloy-rs/alloy/issues/2228))

Diff for: Cargo.toml

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

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

7373
alloy-core = { version = "1.0.0", default-features = false }
7474
alloy-dyn-abi = { version = "1.0.0", default-features = false }
@@ -174,4 +174,4 @@ ci_info = "0.14.14"
174174
serial_test = "3.0"
175175
similar-asserts = "1.5"
176176
tempfile = "3.10"
177-
tower-http = "0.6.1"
177+
tower-http = "0.6.1"

Diff for: crates/alloy/CHANGELOG.md

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

1010
### Miscellaneous Tasks
1111

12+
- Release 0.13.0
1213
- Propagate arbitrary feature ([#2227](https://github.com/alloy-rs/alloy/issues/2227))
1314

1415
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18

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

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

1010
### Miscellaneous Tasks
1111

12+
- Release 0.13.0
1213
- Propagate arbitrary feature ([#2227](https://github.com/alloy-rs/alloy/issues/2227))
1314

1415
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18

Diff for: crates/consensus/CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ 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.14.0](https://github.com/alloy-rs/alloy/releases/tag/v0.14.0) - 2025-04-09
9+
10+
### Bug Fixes
11+
12+
- Fix docs of input field for different tx ([#2177](https://github.com/alloy-rs/alloy/issues/2177))
13+
14+
### Dependencies
15+
16+
- [deps] Core 1.0 ([#2184](https://github.com/alloy-rs/alloy/issues/2184))
17+
- [deps] Bincode 2.0 ([#2297](https://github.com/alloy-rs/alloy/issues/2297))
18+
19+
### Features
20+
21+
- [eip4844] Implement `AsRef` and `AsMut` for `TxEip4844` ([#2272](https://github.com/alloy-rs/alloy/issues/2272))
22+
- Add bincode compat to eth typed tx ([#2269](https://github.com/alloy-rs/alloy/issues/2269))
23+
- [`consensus`] WithEncoded helpers ([#2266](https://github.com/alloy-rs/alloy/issues/2266))
24+
25+
### Miscellaneous Tasks
26+
27+
- Port transaction envelope bincode compat function ([#2263](https://github.com/alloy-rs/alloy/issues/2263))
28+
- Hide input mut ([#2255](https://github.com/alloy-rs/alloy/issues/2255))
29+
30+
### Styling
31+
32+
- Added TxType::is_eipxxx fxns ([#2275](https://github.com/alloy-rs/alloy/issues/2275))
33+
834
## [0.13.0](https://github.com/alloy-rs/alloy/releases/tag/v0.13.0) - 2025-03-28
935

1036
### Features
@@ -13,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1339

1440
### Miscellaneous Tasks
1541

42+
- Release 0.13.0
1643
- Expect instead of allow ([#2228](https://github.com/alloy-rs/alloy/issues/2228))
1744
- Propagate arbitrary feature ([#2227](https://github.com/alloy-rs/alloy/issues/2227))
1845

Diff for: crates/contract/CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -5,10 +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.14.0](https://github.com/alloy-rs/alloy/releases/tag/v0.14.0) - 2025-04-09
9+
10+
### Dependencies
11+
12+
- [deps] Core 1.0 ([#2184](https://github.com/alloy-rs/alloy/issues/2184))
13+
14+
### Features
15+
16+
- Relax ProviderBuilder bounds ([#2276](https://github.com/alloy-rs/alloy/issues/2276))
17+
18+
### Testing
19+
20+
- Update error handling ([#2277](https://github.com/alloy-rs/alloy/issues/2277))
21+
822
## [0.13.0](https://github.com/alloy-rs/alloy/releases/tag/v0.13.0) - 2025-03-28
923

1024
### Miscellaneous Tasks
1125

26+
- Release 0.13.0
1227
- Expect instead of allow ([#2228](https://github.com/alloy-rs/alloy/issues/2228))
1328

1429
### Testing

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

1016
### Miscellaneous Tasks

Diff for: crates/eips/CHANGELOG.md

+7
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.14.0](https://github.com/alloy-rs/alloy/releases/tag/v0.14.0) - 2025-04-09
9+
10+
### Bug Fixes
11+
12+
- `BlobAndProofV2` ([#2283](https://github.com/alloy-rs/alloy/issues/2283))
13+
814
## [0.13.0](https://github.com/alloy-rs/alloy/releases/tag/v0.13.0) - 2025-03-28
915

1016
### Dependencies
@@ -17,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1723

1824
### Miscellaneous Tasks
1925

26+
- Release 0.13.0
2027
- Expect instead of allow ([#2228](https://github.com/alloy-rs/alloy/issues/2228))
2128

2229
### Other

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

1016
### 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.14.0](https://github.com/alloy-rs/alloy/releases/tag/v0.14.0) - 2025-04-09
9+
10+
### Dependencies
11+
12+
- [deps] Core 1.0 ([#2184](https://github.com/alloy-rs/alloy/issues/2184))
13+
14+
## [0.13.0](https://github.com/alloy-rs/alloy/releases/tag/v0.13.0) - 2025-03-28
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.13.0
19+
820
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
921

1022
### Miscellaneous Tasks

Diff for: crates/network-primitives/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.14.0](https://github.com/alloy-rs/alloy/releases/tag/v0.14.0) - 2025-04-09
9+
10+
### Features
11+
12+
- Add conditional conversions for BlockTransactions ([#2270](https://github.com/alloy-rs/alloy/issues/2270))
13+
14+
## [0.13.0](https://github.com/alloy-rs/alloy/releases/tag/v0.13.0) - 2025-03-28
15+
16+
### Miscellaneous Tasks
17+
18+
- Release 0.13.0
19+
820
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18
921

1022
### Miscellaneous Tasks

Diff for: crates/network/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,26 @@ 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.14.0](https://github.com/alloy-rs/alloy/releases/tag/v0.14.0) - 2025-04-09
9+
10+
### Dependencies
11+
12+
- [deps] Core 1.0 ([#2184](https://github.com/alloy-rs/alloy/issues/2184))
13+
- Bump msrv to 1.82 ([#2293](https://github.com/alloy-rs/alloy/issues/2293))
14+
15+
### Features
16+
17+
- [`eth-wallet`] Set default signer helper ([#2271](https://github.com/alloy-rs/alloy/issues/2271))
18+
19+
### Miscellaneous Tasks
20+
21+
- Use target_family instead of arch for wasm cfg ([#2288](https://github.com/alloy-rs/alloy/issues/2288))
22+
823
## [0.13.0](https://github.com/alloy-rs/alloy/releases/tag/v0.13.0) - 2025-03-28
924

1025
### Miscellaneous Tasks
1126

27+
- Release 0.13.0
1228
- Expect instead of allow ([#2228](https://github.com/alloy-rs/alloy/issues/2228))
1329

1430
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18

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

+7
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,17 @@ 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.14.0](https://github.com/alloy-rs/alloy/releases/tag/v0.14.0) - 2025-04-09
9+
10+
### Features
11+
12+
- Relax ProviderBuilder bounds ([#2276](https://github.com/alloy-rs/alloy/issues/2276))
13+
814
## [0.13.0](https://github.com/alloy-rs/alloy/releases/tag/v0.13.0) - 2025-03-28
915

1016
### Miscellaneous Tasks
1117

18+
- Release 0.13.0
1219
- Expect instead of allow ([#2228](https://github.com/alloy-rs/alloy/issues/2228))
1320

1421
## [0.12.6](https://github.com/alloy-rs/alloy/releases/tag/v0.12.6) - 2025-03-18

0 commit comments

Comments
 (0)