release: 0.5.3 (#471)

* release: version 0.5.3

* chore: update changelog
This commit is contained in:
Georgios Konstantopoulos 2021-09-27 13:20:10 +03:00 committed by GitHub
parent 7fdc47e8e5
commit 8574e6a376
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 25 additions and 17 deletions

View File

@ -4,10 +4,13 @@
### Unreleased
### 0.5.3
* Allow configuring the optimizer & passing arbitrary arguments to solc [#427](https://github.com/gakonst/ethers-rs/pull/427)
* Decimal support for `ethers_core::utils::parse_units` [#463](https://github.com/gakonst/ethers-rs/pull/463)
* Fixed Wei unit calculation in `Units` [#460](https://github.com/gakonst/ethers-rs/pull/460)
* Add `ethers_core::utils::get_create2_address_from_hash` [#444](https://github.com/gakonst/ethers-rs/pull/444)
* Bumped ethabi to 0.15.0 and fixing breaking changes [#469](https://github.com/gakonst/ethers-rs/pull/469), [#448](https://github.com/gakonst/ethers-rs/pull/448), [#445](https://github.com/gakonst/ethers-rs/pull/445)
### 0.5.2
* Correctly RLP Encode transactions as received from the mempool ([#415](https://github.com/gakonst/ethers-rs/pull/415))
@ -16,10 +19,11 @@
### Unreleased
### 0.5.3
* Expose `ens` module [#435](https://github.com/gakonst/ethers-rs/pull/435)
* Add `eth_getProof` [#459](https://github.com/gakonst/ethers-rs/pull/459)
### 0.5.2
* Set resolved ENS name during gas estimation ([1e5a9e](https://github.com/gakonst/ethers-rs/commit/1e5a9efb3c678eecd43d5c341b4932da35445831))
@ -30,10 +34,14 @@
## ethers-contract
### Unreleased
### 0.5.3
* (De)Tokenize structs and events with only a single field as `Token:Tuple` ([#417](https://github.com/gakonst/ethers-rs/pull/417))
## ethers-middleware
### Unreleased
### 0.5.3
* Added Time Lagged middleware [#457](https://github.com/gakonst/ethers-rs/pull/457)

16
Cargo.lock generated
View File

@ -847,7 +847,7 @@ dependencies = [
[[package]]
name = "ethers"
version = "0.5.1"
version = "0.5.3"
dependencies = [
"anyhow",
"ethers-contract",
@ -863,7 +863,7 @@ dependencies = [
[[package]]
name = "ethers-contract"
version = "0.5.1"
version = "0.5.3"
dependencies = [
"ethers-contract-abigen",
"ethers-contract-derive",
@ -882,7 +882,7 @@ dependencies = [
[[package]]
name = "ethers-contract-abigen"
version = "0.5.1"
version = "0.5.3"
dependencies = [
"Inflector",
"anyhow",
@ -903,7 +903,7 @@ dependencies = [
[[package]]
name = "ethers-contract-derive"
version = "0.5.1"
version = "0.5.3"
dependencies = [
"ethers-contract-abigen",
"ethers-core",
@ -916,7 +916,7 @@ dependencies = [
[[package]]
name = "ethers-core"
version = "0.5.2"
version = "0.5.4"
dependencies = [
"arrayvec 0.7.1",
"bincode",
@ -943,7 +943,7 @@ dependencies = [
[[package]]
name = "ethers-middleware"
version = "0.5.1"
version = "0.5.3"
dependencies = [
"async-trait",
"ethers-contract",
@ -968,7 +968,7 @@ dependencies = [
[[package]]
name = "ethers-providers"
version = "0.5.2"
version = "0.5.4"
dependencies = [
"async-trait",
"auto_impl",
@ -1001,7 +1001,7 @@ dependencies = [
[[package]]
name = "ethers-signers"
version = "0.5.1"
version = "0.5.3"
dependencies = [
"async-trait",
"coins-bip32",

View File

@ -1,6 +1,6 @@
[package]
name = "ethers"
version = "0.5.1"
version = "0.5.3"
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"

View File

@ -1,7 +1,7 @@
[package]
name = "ethers-contract"
license = "MIT OR Apache-2.0"
version = "0.5.1"
version = "0.5.3"
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018"
description = "Smart contract bindings for the ethers-rs crate"

View File

@ -1,6 +1,6 @@
[package]
name = "ethers-contract-abigen"
version = "0.5.1"
version = "0.5.3"
authors = ["Nicholas Rodrigues Lordello <nlordell@gmail.com>", "Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,6 +1,6 @@
[package]
name = "ethers-contract-derive"
version = "0.5.1"
version = "0.5.3"
authors = ["Nicholas Rodrigues Lordello <nlordell@gmail.com>", "Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -1,7 +1,7 @@
[package]
name = "ethers-core"
license = "MIT OR Apache-2.0"
version = "0.5.2"
version = "0.5.4"
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018"
description = "Core structures for the ethers-rs crate"

View File

@ -1,7 +1,7 @@
[package]
name = "ethers-middleware"
license = "MIT OR Apache-2.0"
version = "0.5.1"
version = "0.5.3"
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018"
description = "Middleware implementations for the ethers-rs crate"

View File

@ -1,7 +1,7 @@
[package]
name = "ethers-providers"
license = "MIT OR Apache-2.0"
version = "0.5.2"
version = "0.5.4"
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018"
description = "Provider implementations for the ethers-rs crate"

View File

@ -1,7 +1,7 @@
[package]
name = "ethers-signers"
license = "MIT OR Apache-2.0"
version = "0.5.1"
version = "0.5.3"
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018"
description = "Signer implementations for the ethers-rs crate"