From 3fce0cca25f93c251d947d7dbc515d5562895c20 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Thu, 28 Jul 2022 10:58:50 -0700 Subject: [PATCH] (cargo-release) version 0.17.0 --- Cargo.lock | 2 +- Cargo.toml | 4 ++-- ethers-contract/Cargo.toml | 2 +- ethers-middleware/Cargo.toml | 2 +- ethers-providers/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 207181d2..d0adb303 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1194,7 +1194,7 @@ dependencies = [ [[package]] name = "ethers-providers" -version = "0.13.0" +version = "0.17.0" dependencies = [ "async-trait", "auto_impl", diff --git a/Cargo.toml b/Cargo.toml index 54d474f1..b3ffd240 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,14 +84,14 @@ solc-sha2-asm = ["ethers-solc", "ethers-solc/asm"] ethers-addressbook = { version = "^0.17.0", default-features = false, path = "./ethers-addressbook" } ethers-contract = { version = "^0.13.0", default-features = false, path = "./ethers-contract" } ethers-core = { version = "^0.17.0", default-features = false, path = "./ethers-core" } -ethers-providers = { version = "^0.13.0", default-features = false, path = "./ethers-providers" } +ethers-providers = { version = "^0.17.0", default-features = false, path = "./ethers-providers" } ethers-signers = { version = "^0.13.0", default-features = false, path = "./ethers-signers" } ethers-middleware = { version = "^0.13.0", default-features = false, path = "./ethers-middleware" } ethers-solc = { version = "^0.13.0", default-features = false, path = "./ethers-solc", optional = true } ethers-etherscan = { version = "^0.13.0", default-features = false, path = "./ethers-etherscan" } [target.'cfg(target_family = "unix")'.dev-dependencies] -ethers-providers = { version = "^0.13.0", default-features = false, path = "./ethers-providers", features = ["ws", "ipc"] } +ethers-providers = { version = "^0.17.0", default-features = false, path = "./ethers-providers", features = ["ws", "ipc"] } eyre = "0.6" rand = "0.8.5" serde = { version = "1.0.124", features = ["derive"] } diff --git a/ethers-contract/Cargo.toml b/ethers-contract/Cargo.toml index c66ab1a8..6c9118dd 100644 --- a/ethers-contract/Cargo.toml +++ b/ethers-contract/Cargo.toml @@ -14,7 +14,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -ethers-providers = { version = "^0.13.0", path = "../ethers-providers", default-features = false } +ethers-providers = { version = "^0.17.0", path = "../ethers-providers", default-features = false } ethers-core = { version = "^0.17.0", path = "../ethers-core", default-features = false } ethers-contract-abigen = { version = "^0.17.0", path = "ethers-contract-abigen", default-features = false, optional = true } ethers-contract-derive = { version = "^0.17.0", path = "ethers-contract-derive", optional = true } diff --git a/ethers-middleware/Cargo.toml b/ethers-middleware/Cargo.toml index ac306e08..97ebdce2 100644 --- a/ethers-middleware/Cargo.toml +++ b/ethers-middleware/Cargo.toml @@ -17,7 +17,7 @@ rustdoc-args = ["--cfg", "docsrs"] ethers-contract = { version = "^0.13.0", path = "../ethers-contract", default-features = false } ethers-core = { version = "^0.17.0", path = "../ethers-core", default-features = false } ethers-etherscan = { version = "^0.13.0", path = "../ethers-etherscan", default-features = false } -ethers-providers = { version = "^0.13.0", path = "../ethers-providers", default-features = false } +ethers-providers = { version = "^0.17.0", path = "../ethers-providers", default-features = false } ethers-signers = { version = "^0.13.0", path = "../ethers-signers", default-features = false } async-trait = { version = "0.1.50", default-features = false } diff --git a/ethers-providers/Cargo.toml b/ethers-providers/Cargo.toml index 4581659b..4e72d392 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.13.0" +version = "0.17.0" authors = ["Georgios Konstantopoulos "] edition = "2018" description = "Provider implementations for the ethers-rs crate"