Skip to content

Commit 64dbcd2

Browse files
committed
chore: release 1.6.1
1 parent a1c7192 commit 64dbcd2

File tree

43 files changed

+291
-41
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+291
-41
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
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+
## [1.6.1](https://github.com/alloy-rs/alloy/releases/tag/v1.6.1) - 2026-02-03
9+
10+
### Other
11+
12+
- Revert "feat(rpc-types-eth): add optional timestamp field to Transaction" ([#3638](https://github.com/alloy-rs/alloy/issues/3638))
13+
814
## [1.6.0](https://github.com/alloy-rs/alloy/releases/tag/v1.6.0) - 2026-02-03
915

1016
### Bug Fixes
@@ -35,6 +41,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3541
- [rpc-types-eth] Add blob_base_fee to BlockOverrides ([#3585](https://github.com/alloy-rs/alloy/issues/3585))
3642
- [rpc-client] Allow setting terminal error codes on pollers ([#3421](https://github.com/alloy-rs/alloy/issues/3421))
3743

44+
### Miscellaneous Tasks
45+
46+
- Release 1.6.0
47+
3848
### Other
3949

4050
- Use collect_str for FunctionSelector serialization ([#3622](https://github.com/alloy-rs/alloy/issues/3622))

Cargo.toml

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "1.6.0"
6+
version = "1.6.1"
77
edition = "2021"
88
rust-version = "1.88"
99
authors = ["Alloy Contributors"]
@@ -32,46 +32,46 @@ large-enum-variant = "allow"
3232
result-large-err = "allow"
3333

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

7676
alloy-core = { version = "1.4.1", default-features = false }
7777
alloy-dyn-abi = { version = "1.4.1", default-features = false }

crates/alloy/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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+
## [1.6.0](https://github.com/alloy-rs/alloy/releases/tag/v1.6.0) - 2026-02-03
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.6.0
13+
814
## [1.5.2](https://github.com/alloy-rs/alloy/releases/tag/v1.5.2) - 2026-01-22
915

1016
### Miscellaneous Tasks

crates/consensus-any/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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+
## [1.6.0](https://github.com/alloy-rs/alloy/releases/tag/v1.6.0) - 2026-02-03
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.6.0
13+
814
## [1.5.2](https://github.com/alloy-rs/alloy/releases/tag/v1.5.2) - 2026-01-22
915

1016
### Miscellaneous Tasks

crates/consensus/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
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+
## [1.6.1](https://github.com/alloy-rs/alloy/releases/tag/v1.6.1) - 2026-02-03
9+
10+
### Other
11+
12+
- Revert "feat(rpc-types-eth): add optional timestamp field to Transaction" ([#3638](https://github.com/alloy-rs/alloy/issues/3638))
13+
814
## [1.6.0](https://github.com/alloy-rs/alloy/releases/tag/v1.6.0) - 2026-02-03
915

1016
### Bug Fixes
@@ -16,6 +22,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1622
- [rpc-types-eth] Add optional timestamp field to Transaction ([#3606](https://github.com/alloy-rs/alloy/issues/3606))
1723
- Adding an ECDSA verify ([#3595](https://github.com/alloy-rs/alloy/issues/3595))
1824

25+
### Miscellaneous Tasks
26+
27+
- Release 1.6.0
28+
1929
## [1.5.2](https://github.com/alloy-rs/alloy/releases/tag/v1.5.2) - 2026-01-22
2030

2131
### Miscellaneous Tasks

crates/contract/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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
- [contract] Propagate TransportError when all eth_call overrides fail ([#3316](https://github.com/alloy-rs/alloy/issues/3316))
1313

14+
### Miscellaneous Tasks
15+
16+
- Release 1.6.0
17+
1418
## [1.5.2](https://github.com/alloy-rs/alloy/releases/tag/v1.5.2) - 2026-01-22
1519

1620
### Miscellaneous Tasks

crates/eip5792/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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+
## [1.6.0](https://github.com/alloy-rs/alloy/releases/tag/v1.6.0) - 2026-02-03
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.6.0
13+
814
## [1.5.2](https://github.com/alloy-rs/alloy/releases/tag/v1.5.2) - 2026-01-22
915

1016
### Miscellaneous Tasks

crates/eip7547/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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+
## [1.6.0](https://github.com/alloy-rs/alloy/releases/tag/v1.6.0) - 2026-02-03
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.6.0
13+
814
## [1.5.2](https://github.com/alloy-rs/alloy/releases/tag/v1.5.2) - 2026-01-22
915

1016
### Miscellaneous Tasks

crates/eips/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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+
## [1.6.0](https://github.com/alloy-rs/alloy/releases/tag/v1.6.0) - 2026-02-03
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.6.0
13+
814
## [1.5.2](https://github.com/alloy-rs/alloy/releases/tag/v1.5.2) - 2026-01-22
915

1016
### Miscellaneous Tasks

crates/ens/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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+
## [1.6.0](https://github.com/alloy-rs/alloy/releases/tag/v1.6.0) - 2026-02-03
9+
10+
### Miscellaneous Tasks
11+
12+
- Release 1.6.0
13+
814
## [1.5.2](https://github.com/alloy-rs/alloy/releases/tag/v1.5.2) - 2026-01-22
915

1016
### Miscellaneous Tasks

0 commit comments

Comments
 (0)