Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
gakonst committed Apr 12, 2023
1 parent 3c8639d commit 24126bf
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 24 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,16 @@ which is configured [here](./cliff.toml).

Please do not manually edit this file.

## [2.0.2] - 2023-03-28
## [2.0.3] - 2023-04-12

### Bug Fixes

- Handle fields with raw idents ([#2315](https://github.com/gakonst/ethers-rs/issues/2315))
- Poll stream until pending ([#2340](https://github.com/gakonst/ethers-rs/issues/2340))
- Document FilecoinMainnet as EIP-1559 compatible ([#2336](https://github.com/gakonst/ethers-rs/issues/2336))
- No need to multiply again with `GWEI_TO_WEI_U256` ([#2326](https://github.com/gakonst/ethers-rs/issues/2326))
- [**breaking**] Change the `GasOracle` fields to be `f64` ([#2325](https://github.com/gakonst/ethers-rs/issues/2325))
- Docsrs cfg_attr ([#2309](https://github.com/gakonst/ethers-rs/issues/2309))
- Ensure ethers-solc has tokio-rt-multithread
- Ambiguous_glob_reexports rustc lint ([#2301](https://github.com/gakonst/ethers-rs/issues/2301))
- Broken eip155 logic in aws signer ([#2300](https://github.com/gakonst/ethers-rs/issues/2300))
Expand Down Expand Up @@ -162,6 +168,8 @@ Please do not manually edit this file.

### Documentation

- Update some doctest examples ([#2339](https://github.com/gakonst/ethers-rs/issues/2339))
- Add erc20 token transfer example ([#2295](https://github.com/gakonst/ethers-rs/issues/2295))
- Fix broken links, update documentation ([#2203](https://github.com/gakonst/ethers-rs/issues/2203))
- Update providers book and examples ([#2098](https://github.com/gakonst/ethers-rs/issues/2098))
- Rename `event_derives` to `derives` ([#2018](https://github.com/gakonst/ethers-rs/issues/2018))
Expand All @@ -173,6 +181,11 @@ Please do not manually edit this file.

### Features

- Add Base Goerli chain ([#2338](https://github.com/gakonst/ethers-rs/issues/2338))
- Very permissive etherscan gwei deser ([#2327](https://github.com/gakonst/ethers-rs/issues/2327))
- Syn 2.0, merge eip712 crate into ethers-contract-derive ([#2279](https://github.com/gakonst/ethers-rs/issues/2279))
- Add Settings sanitize ([#2329](https://github.com/gakonst/ethers-rs/issues/2329))
- `Transaction::decode()` sets the hash ([#2303](https://github.com/gakonst/ethers-rs/issues/2303))
- Improve error diagnostic ([#2280](https://github.com/gakonst/ethers-rs/issues/2280))
- Roundtrip serde + to/from strings ([#2270](https://github.com/gakonst/ethers-rs/issues/2270))
- Support empty events ([#2263](https://github.com/gakonst/ethers-rs/issues/2263))
Expand Down Expand Up @@ -229,6 +242,12 @@ Please do not manually edit this file.

### Miscellaneous Tasks

- Minify test json files ([#2341](https://github.com/gakonst/ethers-rs/issues/2341))
- Dont retain errors ([#2332](https://github.com/gakonst/ethers-rs/issues/2332))
- Update solang-parser ([#2334](https://github.com/gakonst/ethers-rs/issues/2334))
- Update deny config ([#2330](https://github.com/gakonst/ethers-rs/issues/2330))
- Ignore another rev ([#2311](https://github.com/gakonst/ethers-rs/issues/2311))
- Use ethers 2 by default when generating bindings ([#2317](https://github.com/gakonst/ethers-rs/issues/2317))
- Add eyre dependency ([#2305](https://github.com/gakonst/ethers-rs/issues/2305))
- Remove redundant clone
- Make clippy happy ([#2264](https://github.com/gakonst/ethers-rs/issues/2264))
Expand Down Expand Up @@ -263,6 +282,9 @@ Please do not manually edit this file.

### Other

- Disable cyclical dep
- Add scroll alpha testnet ([#2316](https://github.com/gakonst/ethers-rs/issues/2316))
- Add legacy-ws feat to meta crate ([#2328](https://github.com/gakonst/ethers-rs/issues/2328))
- Rm celo integration test, install missing solc version ([#2292](https://github.com/gakonst/ethers-rs/issues/2292))
- Prestwich/gas escalator dangle ([#2284](https://github.com/gakonst/ethers-rs/issues/2284))
- Contracts chapter ([#2281](https://github.com/gakonst/ethers-rs/issues/2281))
Expand Down Expand Up @@ -306,6 +328,7 @@ Please do not manually edit this file.

### Performance

- Early return in EthCodec derive ([#2314](https://github.com/gakonst/ethers-rs/issues/2314))
- Wrap source content in Arc ([#2138](https://github.com/gakonst/ethers-rs/issues/2138))
- Avoid unnecessary allocations ([#2046](https://github.com/gakonst/ethers-rs/issues/2046))

Expand Down
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "2.0.2"
version = "2.0.3"
edition = "2021"
rust-version = "1.65"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -64,18 +64,18 @@ resolver = "2"

[workspace.dependencies]
# workspace crates
ethers = { version = "2.0.2", path = "ethers", default-features = false }
ethers-addressbook = { version = "2.0.2", path = "ethers-addressbook", default-features = false }
ethers-contract = { version = "2.0.2", path = "ethers-contract", default-features = false }
ethers-core = { version = "2.0.2", path = "ethers-core", default-features = false }
ethers-etherscan = { version = "2.0.2", path = "ethers-etherscan", default-features = false }
ethers-middleware = { version = "2.0.2", path = "ethers-middleware", default-features = false }
ethers-providers = { version = "2.0.2", path = "ethers-providers", default-features = false }
ethers-signers = { version = "2.0.2", path = "ethers-signers", default-features = false }
ethers-solc = { version = "2.0.2", path = "ethers-solc", default-features = false }
ethers = { version = "2.0.3", path = "ethers", default-features = false }
ethers-addressbook = { version = "2.0.3", path = "ethers-addressbook", default-features = false }
ethers-contract = { version = "2.0.3", path = "ethers-contract", default-features = false }
ethers-core = { version = "2.0.3", path = "ethers-core", default-features = false }
ethers-etherscan = { version = "2.0.3", path = "ethers-etherscan", default-features = false }
ethers-middleware = { version = "2.0.3", path = "ethers-middleware", default-features = false }
ethers-providers = { version = "2.0.3", path = "ethers-providers", default-features = false }
ethers-signers = { version = "2.0.3", path = "ethers-signers", default-features = false }
ethers-solc = { version = "2.0.3", path = "ethers-solc", default-features = false }

ethers-contract-abigen = { version = "2.0.2", path = "ethers-contract/ethers-contract-abigen", default-features = false }
ethers-contract-derive = { version = "2.0.2", path = "ethers-contract/ethers-contract-derive", default-features = false }
ethers-contract-abigen = { version = "2.0.3", path = "ethers-contract/ethers-contract-abigen", default-features = false }
ethers-contract-derive = { version = "2.0.3", path = "ethers-contract/ethers-contract-derive", default-features = false }

# async / async utils
tokio = "1.27"
Expand Down

0 comments on commit 24126bf

Please sign in to comment.