From 61767c8dd29ed6b8ed4dfc3a2be22d1d2b39db0a Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Thu, 4 Mar 2021 09:30:27 +0200 Subject: [PATCH] release: 0.2.2 (#219) --- Cargo.lock | 17 ++++++++--------- ethers-contract/Cargo.toml | 10 +++++----- .../ethers-contract-abigen/Cargo.toml | 4 ++-- .../ethers-contract-derive/Cargo.toml | 6 +++--- ethers-core/Cargo.toml | 2 +- ethers-middleware/Cargo.toml | 10 +++++----- ethers-providers/Cargo.toml | 6 +++--- ethers-signers/Cargo.toml | 5 ++--- ethers/Cargo.toml | 12 ++++++------ 9 files changed, 35 insertions(+), 37 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2460c0bc..793600c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -615,7 +615,7 @@ dependencies = [ [[package]] name = "ethers" -version = "0.2.0" +version = "0.2.2" dependencies = [ "anyhow", "ethers-contract", @@ -631,7 +631,7 @@ dependencies = [ [[package]] name = "ethers-contract" -version = "0.2.0" +version = "0.2.2" dependencies = [ "ethers", "ethers-contract-abigen", @@ -652,7 +652,7 @@ dependencies = [ [[package]] name = "ethers-contract-abigen" -version = "0.2.0" +version = "0.2.2" dependencies = [ "Inflector", "anyhow", @@ -668,7 +668,7 @@ dependencies = [ [[package]] name = "ethers-contract-derive" -version = "0.2.0" +version = "0.2.2" dependencies = [ "ethers-contract-abigen", "ethers-core", @@ -680,7 +680,7 @@ dependencies = [ [[package]] name = "ethers-core" -version = "0.2.0" +version = "0.2.2" dependencies = [ "arrayvec", "bincode", @@ -706,7 +706,7 @@ dependencies = [ [[package]] name = "ethers-middleware" -version = "0.2.0" +version = "0.2.2" dependencies = [ "async-trait", "ethers", @@ -731,7 +731,7 @@ dependencies = [ [[package]] name = "ethers-providers" -version = "0.2.0" +version = "0.2.2" dependencies = [ "async-trait", "auto_impl", @@ -756,7 +756,7 @@ dependencies = [ [[package]] name = "ethers-signers" -version = "0.2.0" +version = "0.2.2" dependencies = [ "async-trait", "coins-ledger", @@ -768,7 +768,6 @@ dependencies = [ "futures-util", "hex", "rand 0.7.3", - "serde", "serde_json", "sha2", "tempfile", diff --git a/ethers-contract/Cargo.toml b/ethers-contract/Cargo.toml index 4b8c769e..98161f53 100644 --- a/ethers-contract/Cargo.toml +++ b/ethers-contract/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ethers-contract" license = "MIT OR Apache-2.0" -version = "0.2.0" +version = "0.2.2" authors = ["Georgios Konstantopoulos "] edition = "2018" description = "Smart contract bindings for the ethers-rs crate" @@ -10,11 +10,11 @@ repository = "https://github.com/gakonst/ethers-rs" keywords = ["ethereum", "web3", "celo", "ethers"] [dependencies] -ethers-providers = { version = "0.2", path = "../ethers-providers", default-features = false } -ethers-core = { version = "0.2", path = "../ethers-core", default-features = false } +ethers-providers = { version = "0.2.2", path = "../ethers-providers", default-features = false } +ethers-core = { version = "0.2.2", path = "../ethers-core", default-features = false } -ethers-contract-abigen = { version = "0.2", path = "ethers-contract-abigen", optional = true } -ethers-contract-derive = { version = "0.2", path = "ethers-contract-derive", optional = true } +ethers-contract-abigen = { version = "0.2.2", path = "ethers-contract-abigen", optional = true } +ethers-contract-derive = { version = "0.2.2", path = "ethers-contract-derive", optional = true } serde = { version = "1.0.123", default-features = false } serde_json = { version = "1.0.64", default-features = false } diff --git a/ethers-contract/ethers-contract-abigen/Cargo.toml b/ethers-contract/ethers-contract-abigen/Cargo.toml index 219bec01..14ab6e00 100644 --- a/ethers-contract/ethers-contract-abigen/Cargo.toml +++ b/ethers-contract/ethers-contract-abigen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethers-contract-abigen" -version = "0.2.0" +version = "0.2.2" authors = ["Nicholas Rodrigues Lordello ", "Georgios Konstantopoulos "] edition = "2018" license = "MIT OR Apache-2.0" @@ -10,7 +10,7 @@ repository = "https://github.com/gakonst/ethers-rs" keywords = ["ethereum", "web3", "celo", "ethers"] [dependencies] -ethers-core = { version = "0.2", path = "../../ethers-core" } +ethers-core = { version = "0.2.2", path = "../../ethers-core" } anyhow = "1.0.37" curl = "0.4" diff --git a/ethers-contract/ethers-contract-derive/Cargo.toml b/ethers-contract/ethers-contract-derive/Cargo.toml index 38ca684c..b0caecbe 100644 --- a/ethers-contract/ethers-contract-derive/Cargo.toml +++ b/ethers-contract/ethers-contract-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethers-contract-derive" -version = "0.2.0" +version = "0.2.2" authors = ["Nicholas Rodrigues Lordello ", "Georgios Konstantopoulos "] edition = "2018" license = "MIT OR Apache-2.0" @@ -13,8 +13,8 @@ keywords = ["ethereum", "web3", "celo", "ethers"] proc-macro = true [dependencies] -ethers-core = { version = "0.2", path = "../../ethers-core" } -ethers-contract-abigen = { version = "0.2", path = "../ethers-contract-abigen" } +ethers-core = { version = "0.2.2", path = "../../ethers-core" } +ethers-contract-abigen = { version = "0.2.2", path = "../ethers-contract-abigen" } serde_json = "1.0.53" diff --git a/ethers-core/Cargo.toml b/ethers-core/Cargo.toml index 4ea1bd81..90f826ce 100644 --- a/ethers-core/Cargo.toml +++ b/ethers-core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ethers-core" license = "MIT OR Apache-2.0" -version = "0.2.0" +version = "0.2.2" authors = ["Georgios Konstantopoulos "] edition = "2018" description = "Core structures for the ethers-rs crate" diff --git a/ethers-middleware/Cargo.toml b/ethers-middleware/Cargo.toml index c2b98e92..9ac3e591 100644 --- a/ethers-middleware/Cargo.toml +++ b/ethers-middleware/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ethers-middleware" license = "MIT OR Apache-2.0" -version = "0.2.0" +version = "0.2.2" authors = ["Georgios Konstantopoulos "] edition = "2018" description = "Middleware implementations for the ethers-rs crate" @@ -14,10 +14,10 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -ethers-contract = { version = "0.2", path = "../ethers-contract", default-features = false, features = ["abigen"] } -ethers-core = { version = "0.2", path = "../ethers-core", default-features = false } -ethers-providers = { version = "0.2", path = "../ethers-providers", default-features = false } -ethers-signers = { version = "0.2", path = "../ethers-signers", default-features = false } +ethers-contract = { version = "0.2.2", path = "../ethers-contract", default-features = false, features = ["abigen"] } +ethers-core = { version = "0.2.2", path = "../ethers-core", default-features = false } +ethers-providers = { version = "0.2.2", path = "../ethers-providers", default-features = false } +ethers-signers = { version = "0.2.2", path = "../ethers-signers", default-features = false } async-trait = { version = "0.1.42", default-features = false } serde = { version = "1.0.123", default-features = false, features = ["derive"] } diff --git a/ethers-providers/Cargo.toml b/ethers-providers/Cargo.toml index 15cf45be..8564dd0a 100644 --- a/ethers-providers/Cargo.toml +++ b/ethers-providers/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ethers-providers" license = "MIT OR Apache-2.0" -version = "0.2.0" +version = "0.2.2" authors = ["Georgios Konstantopoulos "] edition = "2018" description = "Provider implementations for the ethers-rs crate" @@ -14,7 +14,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -ethers-core = { version = "0.2", path = "../ethers-core", default-features = false } +ethers-core = { version = "0.2.2", path = "../ethers-core", default-features = false } async-trait = { version = "0.1.42", default-features = false } hex = { version = "0.4.2", default-features = false, features = ["std"] } @@ -34,7 +34,7 @@ pin-project = { version = "1.0.5", default-features = false } # tracing tracing = { version = "0.1.25", default-features = false } -tracing-futures = { version = "0.2.5", default-features = false } +tracing-futures = { version = "0.2.5", default-features = false, features = ["std-future"] } # tokio tokio = { version = "1.2", default-features = false, optional = true } diff --git a/ethers-signers/Cargo.toml b/ethers-signers/Cargo.toml index 4d7ac33f..2d738a5c 100644 --- a/ethers-signers/Cargo.toml +++ b/ethers-signers/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ethers-signers" license = "MIT OR Apache-2.0" -version = "0.2.0" +version = "0.2.2" authors = ["Georgios Konstantopoulos "] edition = "2018" description = "Signer implementations for the ethers-rs crate" @@ -14,9 +14,8 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -ethers-core = { version = "0.2", path = "../ethers-core" } +ethers-core = { version = "0.2.2", path = "../ethers-core" } thiserror = { version = "1.0.24", default-features = false } -serde = { version = "1.0.123", default-features = false } coins-ledger = { version = "0.1.0", default-features = false, optional = true } eth-keystore = { version = "0.2.0" } diff --git a/ethers/Cargo.toml b/ethers/Cargo.toml index f21509ad..702e2cc5 100644 --- a/ethers/Cargo.toml +++ b/ethers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethers" -version = "0.2.0" +version = "0.2.2" authors = ["Georgios Konstantopoulos "] license = "MIT OR Apache-2.0" edition = "2018" @@ -34,11 +34,11 @@ ws = ["ethers-providers/ws"] abigen = ["ethers-contract/abigen"] [dependencies] -ethers-contract = { version = "0.2", path = "../ethers-contract" } -ethers-core = { version = "0.2", path = "../ethers-core" } -ethers-providers = { version = "0.2", path = "../ethers-providers" } -ethers-signers = { version = "0.2", path = "../ethers-signers" } -ethers-middleware = { version = "0.2", path = "../ethers-middleware" } +ethers-contract = { version = "0.2.2", path = "../ethers-contract" } +ethers-core = { version = "0.2.2", path = "../ethers-core" } +ethers-providers = { version = "0.2.2", path = "../ethers-providers" } +ethers-signers = { version = "0.2.2", path = "../ethers-signers" } +ethers-middleware = { version = "0.2.2", path = "../ethers-middleware" } [dev-dependencies] ethers-contract = { version = "0.2", path = "../ethers-contract", features = ["abigen"] }