release: 0.2.2 (#219)

This commit is contained in:
Georgios Konstantopoulos 2021-03-04 09:30:27 +02:00 committed by GitHub
parent 0c3bb7b9c1
commit 61767c8dd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 35 additions and 37 deletions

17
Cargo.lock generated
View File

@ -615,7 +615,7 @@ dependencies = [
[[package]] [[package]]
name = "ethers" name = "ethers"
version = "0.2.0" version = "0.2.2"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"ethers-contract", "ethers-contract",
@ -631,7 +631,7 @@ dependencies = [
[[package]] [[package]]
name = "ethers-contract" name = "ethers-contract"
version = "0.2.0" version = "0.2.2"
dependencies = [ dependencies = [
"ethers", "ethers",
"ethers-contract-abigen", "ethers-contract-abigen",
@ -652,7 +652,7 @@ dependencies = [
[[package]] [[package]]
name = "ethers-contract-abigen" name = "ethers-contract-abigen"
version = "0.2.0" version = "0.2.2"
dependencies = [ dependencies = [
"Inflector", "Inflector",
"anyhow", "anyhow",
@ -668,7 +668,7 @@ dependencies = [
[[package]] [[package]]
name = "ethers-contract-derive" name = "ethers-contract-derive"
version = "0.2.0" version = "0.2.2"
dependencies = [ dependencies = [
"ethers-contract-abigen", "ethers-contract-abigen",
"ethers-core", "ethers-core",
@ -680,7 +680,7 @@ dependencies = [
[[package]] [[package]]
name = "ethers-core" name = "ethers-core"
version = "0.2.0" version = "0.2.2"
dependencies = [ dependencies = [
"arrayvec", "arrayvec",
"bincode", "bincode",
@ -706,7 +706,7 @@ dependencies = [
[[package]] [[package]]
name = "ethers-middleware" name = "ethers-middleware"
version = "0.2.0" version = "0.2.2"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"ethers", "ethers",
@ -731,7 +731,7 @@ dependencies = [
[[package]] [[package]]
name = "ethers-providers" name = "ethers-providers"
version = "0.2.0" version = "0.2.2"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"auto_impl", "auto_impl",
@ -756,7 +756,7 @@ dependencies = [
[[package]] [[package]]
name = "ethers-signers" name = "ethers-signers"
version = "0.2.0" version = "0.2.2"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"coins-ledger", "coins-ledger",
@ -768,7 +768,6 @@ dependencies = [
"futures-util", "futures-util",
"hex", "hex",
"rand 0.7.3", "rand 0.7.3",
"serde",
"serde_json", "serde_json",
"sha2", "sha2",
"tempfile", "tempfile",

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.2.0" version = "0.2.2"
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,11 +10,11 @@ repository = "https://github.com/gakonst/ethers-rs"
keywords = ["ethereum", "web3", "celo", "ethers"] keywords = ["ethereum", "web3", "celo", "ethers"]
[dependencies] [dependencies]
ethers-providers = { version = "0.2", path = "../ethers-providers", default-features = false } ethers-providers = { version = "0.2.2", path = "../ethers-providers", default-features = false }
ethers-core = { version = "0.2", path = "../ethers-core", 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-abigen = { version = "0.2.2", path = "ethers-contract-abigen", optional = true }
ethers-contract-derive = { version = "0.2", path = "ethers-contract-derive", optional = true } ethers-contract-derive = { version = "0.2.2", path = "ethers-contract-derive", optional = true }
serde = { version = "1.0.123", default-features = false } serde = { version = "1.0.123", default-features = false }
serde_json = { version = "1.0.64", default-features = false } serde_json = { version = "1.0.64", default-features = false }

View File

@ -1,6 +1,6 @@
[package] [package]
name = "ethers-contract-abigen" name = "ethers-contract-abigen"
version = "0.2.0" version = "0.2.2"
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.2", path = "../../ethers-core" } ethers-core = { version = "0.2.2", path = "../../ethers-core" }
anyhow = "1.0.37" anyhow = "1.0.37"
curl = "0.4" curl = "0.4"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "ethers-contract-derive" name = "ethers-contract-derive"
version = "0.2.0" version = "0.2.2"
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.2", path = "../../ethers-core" } ethers-core = { version = "0.2.2", path = "../../ethers-core" }
ethers-contract-abigen = { version = "0.2", path = "../ethers-contract-abigen" } ethers-contract-abigen = { version = "0.2.2", path = "../ethers-contract-abigen" }
serde_json = "1.0.53" serde_json = "1.0.53"

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.2.0" version = "0.2.2"
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.2.0" version = "0.2.2"
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.2", path = "../ethers-contract", default-features = false, features = ["abigen"] } ethers-contract = { version = "0.2.2", path = "../ethers-contract", default-features = false, features = ["abigen"] }
ethers-core = { version = "0.2", path = "../ethers-core", default-features = false } ethers-core = { version = "0.2.2", path = "../ethers-core", default-features = false }
ethers-providers = { version = "0.2", path = "../ethers-providers", default-features = false } ethers-providers = { version = "0.2.2", path = "../ethers-providers", default-features = false }
ethers-signers = { version = "0.2", path = "../ethers-signers", default-features = false } ethers-signers = { version = "0.2.2", path = "../ethers-signers", default-features = false }
async-trait = { version = "0.1.42", default-features = false } async-trait = { version = "0.1.42", default-features = false }
serde = { version = "1.0.123", default-features = false, features = ["derive"] } serde = { version = "1.0.123", default-features = false, features = ["derive"] }

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.2.0" version = "0.2.2"
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.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 } async-trait = { version = "0.1.42", default-features = false }
hex = { version = "0.4.2", default-features = false, features = ["std"] } 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
tracing = { version = "0.1.25", default-features = false } 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
tokio = { version = "1.2", default-features = false, optional = true } tokio = { version = "1.2", default-features = false, optional = true }

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.2.0" version = "0.2.2"
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,9 +14,8 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"] rustdoc-args = ["--cfg", "docsrs"]
[dependencies] [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 } 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 } coins-ledger = { version = "0.1.0", default-features = false, optional = true }
eth-keystore = { version = "0.2.0" } eth-keystore = { version = "0.2.0" }

View File

@ -1,6 +1,6 @@
[package] [package]
name = "ethers" name = "ethers"
version = "0.2.0" version = "0.2.2"
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"
@ -34,11 +34,11 @@ ws = ["ethers-providers/ws"]
abigen = ["ethers-contract/abigen"] abigen = ["ethers-contract/abigen"]
[dependencies] [dependencies]
ethers-contract = { version = "0.2", path = "../ethers-contract" } ethers-contract = { version = "0.2.2", path = "../ethers-contract" }
ethers-core = { version = "0.2", path = "../ethers-core" } ethers-core = { version = "0.2.2", path = "../ethers-core" }
ethers-providers = { version = "0.2", path = "../ethers-providers" } ethers-providers = { version = "0.2.2", path = "../ethers-providers" }
ethers-signers = { version = "0.2", path = "../ethers-signers" } ethers-signers = { version = "0.2.2", path = "../ethers-signers" }
ethers-middleware = { version = "0.2", path = "../ethers-middleware" } ethers-middleware = { version = "0.2.2", path = "../ethers-middleware" }
[dev-dependencies] [dev-dependencies]
ethers-contract = { version = "0.2", path = "../ethers-contract", features = ["abigen"] } ethers-contract = { version = "0.2", path = "../ethers-contract", features = ["abigen"] }