Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
gakonst committed Jul 15, 2023
1 parent 8082aa8 commit 5dcd3b7
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 12 deletions.
56 changes: 56 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,62 @@ which is configured [here](./cliff.toml).

Please do not manually edit this file.

## [2.0.8] - 2023-07-15

### Bug Fixes

- `ens::namehash` with Unicode characters ([#2510](https://github.com/gakonst/ethers-rs/issues/2510))
- De impl ([#2492](https://github.com/gakonst/ethers-rs/issues/2492))
- Let geth chose ports by default ([#2488](https://github.com/gakonst/ethers-rs/issues/2488))
- Polygon gas stations ([#2479](https://github.com/gakonst/ethers-rs/issues/2479))
- Prevent panic decoding too short input ([#2470](https://github.com/gakonst/ethers-rs/issues/2470))
- Avoid payload moving ([#2460](https://github.com/gakonst/ethers-rs/issues/2460))
- Allow arrays in abigen 'methods' ([#2465](https://github.com/gakonst/ethers-rs/issues/2465))
- Re-introduce etherscan typo and populate properly-spelled field as backup ([#2468](https://github.com/gakonst/ethers-rs/issues/2468))

### Depedencies

- Bump semver from 5.7.1 to 5.7.2 in /examples/wasm ([#2505](https://github.com/gakonst/ethers-rs/issues/2505))
- Update solang-parser requirement from =0.3.0 to =0.3.1 ([#2496](https://github.com/gakonst/ethers-rs/issues/2496))
- Update strum requirement from 0.24 to 0.25 ([#2481](https://github.com/gakonst/ethers-rs/issues/2481))

### Documentation

- Fix doc example ([#2489](https://github.com/gakonst/ethers-rs/issues/2489))

### Features

- Support remapping contexts ([#2509](https://github.com/gakonst/ethers-rs/issues/2509))
- Add with_via_ir_minimum_optimization ([#2504](https://github.com/gakonst/ethers-rs/issues/2504))
- Do not re-parse ABI at runtime ([#2482](https://github.com/gakonst/ethers-rs/issues/2482))
- Verification and status check for proxy contracts ([#2466](https://github.com/gakonst/ethers-rs/issues/2466))
- OP Bedrock Upgrade ([#2461](https://github.com/gakonst/ethers-rs/issues/2461))

### Miscellaneous Tasks

- Clippy ([#2506](https://github.com/gakonst/ethers-rs/issues/2506))
- Clippy ([#2493](https://github.com/gakonst/ethers-rs/issues/2493))
- Clippy ([#2472](https://github.com/gakonst/ethers-rs/issues/2472))
- Clippy ([#2462](https://github.com/gakonst/ethers-rs/issues/2462))

### Other

- Make AggregatedCompilerOutput DeSerialize/Serialize ([#2495](https://github.com/gakonst/ethers-rs/issues/2495))
- Etherscan could also have a plain source mapping ([#2491](https://github.com/gakonst/ethers-rs/issues/2491))
- Add bundler to README.md ([#2477](https://github.com/gakonst/ethers-rs/issues/2477))
- Add timeout to all jobs ([#2476](https://github.com/gakonst/ethers-rs/issues/2476))
- Get_transaction_by_block_and_index ([#2473](https://github.com/gakonst/ethers-rs/issues/2473))
- Update optimism blocktime hint ([#2463](https://github.com/gakonst/ethers-rs/issues/2463))
- Improve `ContractInstance` impls ([#2458](https://github.com/gakonst/ethers-rs/issues/2458))

### Refactor

- Replace unused ports with unused port ([#2475](https://github.com/gakonst/ethers-rs/issues/2475))

### Styling

- Rustfmt ([#2490](https://github.com/gakonst/ethers-rs/issues/2490))

## [2.0.7] - 2023-06-02

### Bug Fixes
Expand Down
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.7"
version = "2.0.8"
edition = "2021"
rust-version = "1.65"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -67,18 +67,18 @@ resolver = "2"

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

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

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

0 comments on commit 5dcd3b7

Please sign in to comment.