(cargo-release) version 0.5.1 (#414)

This commit is contained in:
Georgios Konstantopoulos 2021-08-29 02:53:10 +03:00 committed by GitHub
parent 38c7f5030f
commit 9df4d21d3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 42 additions and 42 deletions

16
Cargo.lock generated
View File

@ -838,7 +838,7 @@ dependencies = [
[[package]] [[package]]
name = "ethers" name = "ethers"
version = "0.4.1" version = "0.5.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"ethers-contract", "ethers-contract",
@ -854,7 +854,7 @@ dependencies = [
[[package]] [[package]]
name = "ethers-contract" name = "ethers-contract"
version = "0.4.7" version = "0.5.1"
dependencies = [ dependencies = [
"ethers-contract-abigen", "ethers-contract-abigen",
"ethers-contract-derive", "ethers-contract-derive",
@ -873,7 +873,7 @@ dependencies = [
[[package]] [[package]]
name = "ethers-contract-abigen" name = "ethers-contract-abigen"
version = "0.4.7" version = "0.5.1"
dependencies = [ dependencies = [
"Inflector", "Inflector",
"anyhow", "anyhow",
@ -894,7 +894,7 @@ dependencies = [
[[package]] [[package]]
name = "ethers-contract-derive" name = "ethers-contract-derive"
version = "0.4.7" version = "0.5.1"
dependencies = [ dependencies = [
"ethers-contract-abigen", "ethers-contract-abigen",
"ethers-core", "ethers-core",
@ -907,7 +907,7 @@ dependencies = [
[[package]] [[package]]
name = "ethers-core" name = "ethers-core"
version = "0.4.8" version = "0.5.1"
dependencies = [ dependencies = [
"arrayvec 0.7.1", "arrayvec 0.7.1",
"bincode", "bincode",
@ -934,7 +934,7 @@ dependencies = [
[[package]] [[package]]
name = "ethers-middleware" name = "ethers-middleware"
version = "0.4.8" version = "0.5.1"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"ethers-contract", "ethers-contract",
@ -958,7 +958,7 @@ dependencies = [
[[package]] [[package]]
name = "ethers-providers" name = "ethers-providers"
version = "0.4.6" version = "0.5.1"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"auto_impl", "auto_impl",
@ -991,7 +991,7 @@ dependencies = [
[[package]] [[package]]
name = "ethers-signers" name = "ethers-signers"
version = "0.4.6" version = "0.5.1"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"coins-bip32", "coins-bip32",

View File

@ -1,10 +1,10 @@
[package] [package]
name = "ethers" name = "ethers"
version = "0.4.1" version = "0.5.1"
authors = ["Georgios Konstantopoulos <me@gakonst.com>"] authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
edition = "2018" edition = "2018"
readme = "../README.md" readme = "README.md"
documentation = "https://docs.rs/ethers" documentation = "https://docs.rs/ethers"
repository = "https://github.com/gakonst/ethers-rs" repository = "https://github.com/gakonst/ethers-rs"
homepage = "https://docs.rs/ethers" homepage = "https://docs.rs/ethers"
@ -71,15 +71,15 @@ abigen = ["ethers-contract/abigen"]
[dependencies] [dependencies]
ethers-contract = { version = "0.4.7", default-features = false, path = "./ethers-contract" } ethers-contract = { version = "^0.5.0", default-features = false, path = "./ethers-contract" }
ethers-core = { version = "0.4.8", default-features = false, path = "./ethers-core", features = ["setup"] } ethers-core = { version = "^0.5.0", default-features = false, path = "./ethers-core", features = ["setup"] }
ethers-providers = { version = "0.4.6", default-features = false, path = "./ethers-providers" } ethers-providers = { version = "^0.5.0", default-features = false, path = "./ethers-providers" }
ethers-signers = { version = "0.4.6", default-features = false, path = "./ethers-signers" } ethers-signers = { version = "^0.5.0", default-features = false, path = "./ethers-signers" }
ethers-middleware = { version = "0.4.8", default-features = false, path = "./ethers-middleware" } ethers-middleware = { version = "^0.5.0", default-features = false, path = "./ethers-middleware" }
[dev-dependencies] [dev-dependencies]
ethers-contract = { version = "0.4.7", default-features = false, path = "./ethers-contract", features = ["abigen"] } ethers-contract = { version = "^0.5.0", default-features = false, path = "./ethers-contract", features = ["abigen"] }
ethers-providers = { version = "0.4.6", default-features = false, path = "./ethers-providers", features = ["ws", "ipc"] } ethers-providers = { version = "^0.5.0", default-features = false, path = "./ethers-providers", features = ["ws", "ipc"] }
anyhow = "1.0.39" anyhow = "1.0.39"
rand = "0.8.4" rand = "0.8.4"

View File

@ -1,7 +1,7 @@
[package] [package]
name = "ethers-contract" name = "ethers-contract"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
version = "0.4.7" version = "0.5.1"
authors = ["Georgios Konstantopoulos <me@gakonst.com>"] authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018" edition = "2018"
description = "Smart contract bindings for the ethers-rs crate" description = "Smart contract bindings for the ethers-rs crate"
@ -10,10 +10,10 @@ repository = "https://github.com/gakonst/ethers-rs"
keywords = ["ethereum", "web3", "celo", "ethers"] keywords = ["ethereum", "web3", "celo", "ethers"]
[dependencies] [dependencies]
ethers-providers = { version = "0.4.6", path = "../ethers-providers", default-features = false } ethers-providers = { version = "^0.5.0", path = "../ethers-providers", default-features = false }
ethers-core = { version = "0.4.6", path = "../ethers-core", default-features = false } ethers-core = { version = "^0.5.0", path = "../ethers-core", default-features = false }
ethers-contract-abigen = { version = "0.4.7", path = "ethers-contract-abigen", optional = true } ethers-contract-abigen = { version = "^0.5.0", path = "ethers-contract-abigen", optional = true }
ethers-contract-derive = { version = "0.4.7", path = "ethers-contract-derive", optional = true } ethers-contract-derive = { version = "^0.5.0", path = "ethers-contract-derive", optional = true }
serde = { version = "1.0.124", default-features = false } serde = { version = "1.0.124", default-features = false }
serde_json = { version = "1.0.64", default-features = false } serde_json = { version = "1.0.64", default-features = false }
@ -24,10 +24,10 @@ futures-util = { version = "0.3.16" }
hex = { version = "0.4.3", default-features = false, features = ["std"] } hex = { version = "0.4.3", default-features = false, features = ["std"] }
[dev-dependencies] [dev-dependencies]
ethers-providers = { version = "0.4.6", path = "../ethers-providers", default-features = false, features = ["ws"] } ethers-providers = { version = "^0.5.0", path = "../ethers-providers", default-features = false, features = ["ws"] }
ethers-signers = { version = "0.4.6", path = "../ethers-signers" } ethers-signers = { version = "^0.5.0", path = "../ethers-signers" }
ethers-contract-abigen = { version = "0.4.7", path = "ethers-contract-abigen" } ethers-contract-abigen = { version = "^0.5.0", path = "ethers-contract-abigen" }
ethers-contract-derive = { version = "0.4.7", path = "ethers-contract-derive" } ethers-contract-derive = { version = "^0.5.0", path = "ethers-contract-derive" }
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
tokio = { version = "1.5", default-features = false, features = ["macros"] } tokio = { version = "1.5", default-features = false, features = ["macros"] }

View File

@ -1,6 +1,6 @@
[package] [package]
name = "ethers-contract-abigen" name = "ethers-contract-abigen"
version = "0.4.7" version = "0.5.1"
authors = ["Nicholas Rodrigues Lordello <nlordell@gmail.com>", "Georgios Konstantopoulos <me@gakonst.com>"] authors = ["Nicholas Rodrigues Lordello <nlordell@gmail.com>", "Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018" edition = "2018"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
@ -10,7 +10,7 @@ repository = "https://github.com/gakonst/ethers-rs"
keywords = ["ethereum", "web3", "celo", "ethers"] keywords = ["ethereum", "web3", "celo", "ethers"]
[dependencies] [dependencies]
ethers-core = { version = "0.4.6", path = "../../ethers-core" } ethers-core = { version = "^0.5.0", path = "../../ethers-core" }
anyhow = "1.0.37" anyhow = "1.0.37"
Inflector = "0.11" Inflector = "0.11"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "ethers-contract-derive" name = "ethers-contract-derive"
version = "0.4.7" version = "0.5.1"
authors = ["Nicholas Rodrigues Lordello <nlordell@gmail.com>", "Georgios Konstantopoulos <me@gakonst.com>"] authors = ["Nicholas Rodrigues Lordello <nlordell@gmail.com>", "Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018" edition = "2018"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
@ -13,8 +13,8 @@ keywords = ["ethereum", "web3", "celo", "ethers"]
proc-macro = true proc-macro = true
[dependencies] [dependencies]
ethers-core = { version = "0.4.6", path = "../../ethers-core" } ethers-core = { version = "^0.5.0", path = "../../ethers-core" }
ethers-contract-abigen = { version = "0.4.7", path = "../ethers-contract-abigen" } ethers-contract-abigen = { version = "^0.5.0", path = "../ethers-contract-abigen" }
serde_json = "1.0.53" serde_json = "1.0.53"
hex = { version = "0.4.3", default-features = false, features = ["std"] } hex = { version = "0.4.3", default-features = false, features = ["std"] }

View File

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

View File

@ -1,7 +1,7 @@
[package] [package]
name = "ethers-middleware" name = "ethers-middleware"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
version = "0.4.8" version = "0.5.1"
authors = ["Georgios Konstantopoulos <me@gakonst.com>"] authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018" edition = "2018"
description = "Middleware implementations for the ethers-rs crate" description = "Middleware implementations for the ethers-rs crate"
@ -14,10 +14,10 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"] rustdoc-args = ["--cfg", "docsrs"]
[dependencies] [dependencies]
ethers-contract = { version = "0.4.7", path = "../ethers-contract", default-features = false, features = ["abigen"] } ethers-contract = { version = "^0.5.0", path = "../ethers-contract", default-features = false, features = ["abigen"] }
ethers-core = { version = "0.4.6", path = "../ethers-core", default-features = false } ethers-core = { version = "^0.5.0", path = "../ethers-core", default-features = false }
ethers-providers = { version = "0.4.6", path = "../ethers-providers", default-features = false } ethers-providers = { version = "^0.5.0", path = "../ethers-providers", default-features = false }
ethers-signers = { version = "0.4.6", path = "../ethers-signers", default-features = false } ethers-signers = { version = "^0.5.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 }
serde = { version = "1.0.124", default-features = false, features = ["derive"] } serde = { version = "1.0.124", default-features = false, features = ["derive"] }
@ -40,7 +40,7 @@ tokio = { version = "1.5" }
[dev-dependencies] [dev-dependencies]
hex = { version = "0.4.3", default-features = false, features = ["std"] } hex = { version = "0.4.3", default-features = false, features = ["std"] }
rand = { version = "0.8.4", default-features = false } rand = { version = "0.8.4", default-features = false }
ethers-providers = { version = "0.4.6", path = "../ethers-providers", default-features = false, features = ["ws", "rustls"] } ethers-providers = { version = "^0.5.0", path = "../ethers-providers", default-features = false, features = ["ws", "rustls"] }
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
tokio = { version = "1.5", default-features = false, features = ["rt", "macros", "time"] } tokio = { version = "1.5", default-features = false, features = ["rt", "macros", "time"] }

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.4.6" version = "0.5.1"
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"
@ -14,7 +14,7 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"] rustdoc-args = ["--cfg", "docsrs"]
[dependencies] [dependencies]
ethers-core = { version = "0.4.6", path = "../ethers-core", default-features = false } ethers-core = { version = "^0.5.0", path = "../ethers-core", default-features = false }
async-trait = { version = "0.1.50", default-features = false } async-trait = { version = "0.1.50", default-features = false }
hex = { version = "0.4.3", default-features = false, features = ["std"] } hex = { version = "0.4.3", default-features = false, features = ["std"] }

View File

@ -1,7 +1,7 @@
[package] [package]
name = "ethers-signers" name = "ethers-signers"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
version = "0.4.6" version = "0.5.1"
authors = ["Georgios Konstantopoulos <me@gakonst.com>"] authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018" edition = "2018"
description = "Signer implementations for the ethers-rs crate" description = "Signer implementations for the ethers-rs crate"
@ -14,7 +14,7 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"] rustdoc-args = ["--cfg", "docsrs"]
[dependencies] [dependencies]
ethers-core = { version = "0.4.0", path = "../ethers-core" } ethers-core = { version = "^0.5.0", path = "../ethers-core" }
thiserror = { version = "1.0.24", default-features = false } thiserror = { version = "1.0.24", default-features = false }
coins-bip32 = "0.3.0" coins-bip32 = "0.3.0"
coins-bip39 = "0.3.0" coins-bip39 = "0.3.0"