Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
gakonst committed May 30, 2023
1 parent 49a8ede commit 8a74677
Show file tree
Hide file tree
Showing 2 changed files with 72 additions and 12 deletions.
60 changes: 60 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,66 @@ which is configured [here](./cliff.toml).

Please do not manually edit this file.

## [2.0.6] - 2023-05-30

### Bug Fixes

- Remove js feature from getrandom ([#2433](https://github.com/gakonst/ethers-rs/issues/2433))
- Make verification result an option to handle blockscout's format ([#2426](https://github.com/gakonst/ethers-rs/issues/2426))
- Examples features ([#2427](https://github.com/gakonst/ethers-rs/issues/2427))
- Fix re-subscription on websocket reconnect ([#2419](https://github.com/gakonst/ethers-rs/issues/2419))
- Make typo on verify constructor arguments an alias ([#2425](https://github.com/gakonst/ethers-rs/issues/2425))
- Error instead of panic when checking if the checksum was found ([#2421](https://github.com/gakonst/ethers-rs/issues/2421))
- Make Arbitrum, Arbitrum Goerli, Arbitrum Nova EIP1559 comp ([#2410](https://github.com/gakonst/ethers-rs/issues/2410))

### Depedencies

- Bump criterion, solang-parser ([#2447](https://github.com/gakonst/ethers-rs/issues/2447))
- Bump trezor-client to 0.1.0 ([#2428](https://github.com/gakonst/ethers-rs/issues/2428))
- Reduce (circular) dev dependencies ([#2415](https://github.com/gakonst/ethers-rs/issues/2415))

### Documentation

- Update README.md and book ethers versions ([#2403](https://github.com/gakonst/ethers-rs/issues/2403))

### Features

- Optimism deposited transactions (2nd part) ([#2434](https://github.com/gakonst/ethers-rs/issues/2434))
- Added Optimism deposited transaction support ([#2390](https://github.com/gakonst/ethers-rs/issues/2390))
- Utility to detect Shanghai-enabled chains ([#2431](https://github.com/gakonst/ethers-rs/issues/2431))
- Move `spoof` module to `ethers_core`, add stateoverrides to `GethDebugTracingCallOptions` ([#2406](https://github.com/gakonst/ethers-rs/issues/2406))
- Add get_block_by_timestamp to ethers-etherscan ([#2349](https://github.com/gakonst/ethers-rs/issues/2349))
- Set default EVM version to Shanghai ([#2414](https://github.com/gakonst/ethers-rs/issues/2414))
- Add methods taking in a tungstenite config ([#2373](https://github.com/gakonst/ethers-rs/issues/2373))
- Export geth trace pre state types ([#2393](https://github.com/gakonst/ethers-rs/issues/2393))
- Add ZkSync testnet ([#2391](https://github.com/gakonst/ethers-rs/issues/2391))

### Miscellaneous Tasks

- Update CI and fix clippy ([#2446](https://github.com/gakonst/ethers-rs/issues/2446))
- Remove Cargo.lock ([#2443](https://github.com/gakonst/ethers-rs/issues/2443))
- Update tokio-tungstenite ([#2423](https://github.com/gakonst/ethers-rs/issues/2423))
- Make `abigen` offline by default, fix `ethers-solc` features ([#2416](https://github.com/gakonst/ethers-rs/issues/2416))
- Update examples script ([#2404](https://github.com/gakonst/ethers-rs/issues/2404))
- Fix lint

### Other

- Fixed format_ether returning integer ([#2435](https://github.com/gakonst/ethers-rs/issues/2435))
- Add more feature tests and checks ([#2436](https://github.com/gakonst/ethers-rs/issues/2436))
- Added nonce helper function ([#2429](https://github.com/gakonst/ethers-rs/issues/2429))
- Allow for Authorization header override with raw parameter ([#2432](https://github.com/gakonst/ethers-rs/issues/2432))
- Add subscribe_full_pending_txs() ([#2424](https://github.com/gakonst/ethers-rs/issues/2424))
- Add ccip-read middleware into readme ([#2402](https://github.com/gakonst/ethers-rs/issues/2402))
- Added linea testnet ([#2407](https://github.com/gakonst/ethers-rs/issues/2407))
- Misc ws fixes ([#2389](https://github.com/gakonst/ethers-rs/issues/2389))
- Revert "temp: disable cyclical dep"

### Styling

- Remove the eip712 feature flag and have it enabled by default ([#2409](https://github.com/gakonst/ethers-rs/issues/2409))
- Add mock response to test json rpc errors ([#2396](https://github.com/gakonst/ethers-rs/issues/2396))

## [2.0.4] - 2023-04-30

### 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.4"
version = "2.0.6"
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.4", path = "ethers", default-features = false }
ethers-addressbook = { version = "2.0.4", path = "ethers-addressbook", default-features = false }
ethers-contract = { version = "2.0.4", path = "ethers-contract", default-features = false }
ethers-core = { version = "2.0.4", path = "ethers-core", default-features = false }
ethers-etherscan = { version = "2.0.4", path = "ethers-etherscan", default-features = false }
ethers-middleware = { version = "2.0.4", path = "ethers-middleware", default-features = false }
ethers-providers = { version = "2.0.4", path = "ethers-providers", default-features = false }
ethers-signers = { version = "2.0.4", path = "ethers-signers", default-features = false }
ethers-solc = { version = "2.0.4", path = "ethers-solc", default-features = false }
ethers = { version = "2.0.6", path = "ethers", default-features = false }
ethers-addressbook = { version = "2.0.6", path = "ethers-addressbook", default-features = false }
ethers-contract = { version = "2.0.6", path = "ethers-contract", default-features = false }
ethers-core = { version = "2.0.6", path = "ethers-core", default-features = false }
ethers-etherscan = { version = "2.0.6", path = "ethers-etherscan", default-features = false }
ethers-middleware = { version = "2.0.6", path = "ethers-middleware", default-features = false }
ethers-providers = { version = "2.0.6", path = "ethers-providers", default-features = false }
ethers-signers = { version = "2.0.6", path = "ethers-signers", default-features = false }
ethers-solc = { version = "2.0.6", path = "ethers-solc", default-features = false }

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

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

0 comments on commit 8a74677

Please sign in to comment.