(cargo-release) version 0.17.0

This commit is contained in:
Georgios Konstantopoulos 2022-07-28 10:58:50 -07:00
parent 842c321678
commit 3fce0cca25
5 changed files with 6 additions and 6 deletions

2
Cargo.lock generated
View File

@ -1194,7 +1194,7 @@ dependencies = [
[[package]] [[package]]
name = "ethers-providers" name = "ethers-providers"
version = "0.13.0" version = "0.17.0"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"auto_impl", "auto_impl",

View File

@ -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-addressbook = { version = "^0.17.0", default-features = false, path = "./ethers-addressbook" }
ethers-contract = { version = "^0.13.0", default-features = false, path = "./ethers-contract" } 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-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-signers = { version = "^0.13.0", default-features = false, path = "./ethers-signers" }
ethers-middleware = { version = "^0.13.0", default-features = false, path = "./ethers-middleware" } 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-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" } ethers-etherscan = { version = "^0.13.0", default-features = false, path = "./ethers-etherscan" }
[target.'cfg(target_family = "unix")'.dev-dependencies] [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" eyre = "0.6"
rand = "0.8.5" rand = "0.8.5"
serde = { version = "1.0.124", features = ["derive"] } serde = { version = "1.0.124", features = ["derive"] }

View File

@ -14,7 +14,7 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"] rustdoc-args = ["--cfg", "docsrs"]
[dependencies] [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-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-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 } ethers-contract-derive = { version = "^0.17.0", path = "ethers-contract-derive", optional = true }

View File

@ -17,7 +17,7 @@ rustdoc-args = ["--cfg", "docsrs"]
ethers-contract = { version = "^0.13.0", path = "../ethers-contract", default-features = false } 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-core = { version = "^0.17.0", path = "../ethers-core", default-features = false }
ethers-etherscan = { version = "^0.13.0", path = "../ethers-etherscan", 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 } ethers-signers = { version = "^0.13.0", path = "../ethers-signers", default-features = false }
async-trait = { version = "0.1.50", default-features = false } async-trait = { version = "0.1.50", default-features = false }

View File

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