Skip to content
This repository was archived by the owner on Oct 19, 2024. It is now read-only.

Commit 554b823

Browse files
committed
chore: release
1 parent 88095ba commit 554b823

File tree

2 files changed

+47
-12
lines changed

2 files changed

+47
-12
lines changed

CHANGELOG.md

+35
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,41 @@ which is configured [here](./cliff.toml).
1010

1111
Please do not manually edit this file.
1212

13+
## [2.0.12] - 2024-01-11
14+
15+
### Bug Fixes
16+
17+
- Update api url ([#2693](https://github.com/gakonst/ethers-rs/issues/2693))
18+
- Better file name to ident conversion ([#2688](https://github.com/gakonst/ethers-rs/issues/2688))
19+
- Missing `AbiEncode` implem for tuples of length 16 ([#2685](https://github.com/gakonst/ethers-rs/issues/2685))
20+
- Allow missing base fee and reward vecs ([#2683](https://github.com/gakonst/ethers-rs/issues/2683))
21+
- Metis is no 1559 ([#2680](https://github.com/gakonst/ethers-rs/issues/2680))
22+
- Normalize signature S ([#2679](https://github.com/gakonst/ethers-rs/issues/2679))
23+
24+
### Depedencies
25+
26+
- Update coins-ledger requirement from 0.8.3 to 0.9.0 ([#2687](https://github.com/gakonst/ethers-rs/issues/2687))
27+
28+
### Features
29+
30+
- Add Base Sepolia as a chain ([#2708](https://github.com/gakonst/ethers-rs/issues/2708))
31+
- Add viction ([#2710](https://github.com/gakonst/ethers-rs/issues/2710))
32+
- Add support for Arbitrum Sepolia ([#2705](https://github.com/gakonst/ethers-rs/issues/2705))
33+
34+
### Other
35+
36+
- Accept 'input' or 'data', (but not both), in transaction request ([#2697](https://github.com/gakonst/ethers-rs/issues/2697))
37+
- Rename field camelCase ([#2682](https://github.com/gakonst/ethers-rs/issues/2682))
38+
39+
### Styling
40+
41+
- Add Scroll Sepolia and update Scroll and Scroll Alpha Testnets ([#2692](https://github.com/gakonst/ethers-rs/issues/2692))
42+
- Rustfmt ([#2681](https://github.com/gakonst/ethers-rs/issues/2681))
43+
44+
### Testing
45+
46+
- Saner tx list params ([#2689](https://github.com/gakonst/ethers-rs/issues/2689))
47+
1348
## [2.0.11] - 2023-11-16
1449

1550
### Bug Fixes

Cargo.toml

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace.package]
2-
version = "2.0.11"
2+
version = "2.0.12"
33
edition = "2021"
44
rust-version = "1.65"
55
license = "MIT OR Apache-2.0"
@@ -67,18 +67,18 @@ resolver = "2"
6767

6868
[workspace.dependencies]
6969
# workspace crates
70-
ethers = { version = "2.0.11", path = "ethers", default-features = false }
71-
ethers-addressbook = { version = "2.0.11", path = "ethers-addressbook", default-features = false }
72-
ethers-contract = { version = "2.0.11", path = "ethers-contract", default-features = false }
73-
ethers-core = { version = "2.0.11", path = "ethers-core", default-features = false }
74-
ethers-etherscan = { version = "2.0.11", path = "ethers-etherscan", default-features = false }
75-
ethers-middleware = { version = "2.0.11", path = "ethers-middleware", default-features = false }
76-
ethers-providers = { version = "2.0.11", path = "ethers-providers", default-features = false }
77-
ethers-signers = { version = "2.0.11", path = "ethers-signers", default-features = false }
78-
ethers-solc = { version = "2.0.11", path = "ethers-solc", default-features = false }
70+
ethers = { version = "2.0.12", path = "ethers", default-features = false }
71+
ethers-addressbook = { version = "2.0.12", path = "ethers-addressbook", default-features = false }
72+
ethers-contract = { version = "2.0.12", path = "ethers-contract", default-features = false }
73+
ethers-core = { version = "2.0.12", path = "ethers-core", default-features = false }
74+
ethers-etherscan = { version = "2.0.12", path = "ethers-etherscan", default-features = false }
75+
ethers-middleware = { version = "2.0.12", path = "ethers-middleware", default-features = false }
76+
ethers-providers = { version = "2.0.12", path = "ethers-providers", default-features = false }
77+
ethers-signers = { version = "2.0.12", path = "ethers-signers", default-features = false }
78+
ethers-solc = { version = "2.0.12", path = "ethers-solc", default-features = false }
7979

80-
ethers-contract-abigen = { version = "2.0.11", path = "ethers-contract/ethers-contract-abigen", default-features = false }
81-
ethers-contract-derive = { version = "2.0.11", path = "ethers-contract/ethers-contract-derive", default-features = false }
80+
ethers-contract-abigen = { version = "2.0.12", path = "ethers-contract/ethers-contract-abigen", default-features = false }
81+
ethers-contract-derive = { version = "2.0.12", path = "ethers-contract/ethers-contract-derive", default-features = false }
8282

8383
# async / async utils
8484
tokio = "1.32"

0 commit comments

Comments
 (0)