(cargo-release) version 0.13.0

This commit is contained in:
Georgios Konstantopoulos 2022-06-14 13:59:11 +03:00
parent fdccd80551
commit 89f86d801e
6 changed files with 7 additions and 7 deletions

2
Cargo.lock generated
View File

@ -1181,7 +1181,7 @@ dependencies = [
[[package]]
name = "ethers-contract"
version = "0.6.2"
version = "0.13.0"
dependencies = [
"ethers-contract-abigen",
"ethers-contract-derive",

View File

@ -83,7 +83,7 @@ solc-sha2-asm = ["ethers-solc/asm"]
[dependencies]
ethers-addressbook = { version = "^0.13.0", default-features = false, path = "./ethers-addressbook" }
ethers-contract = { version = "^0.6.0", default-features = false, path = "./ethers-contract" }
ethers-contract = { version = "^0.13.0", default-features = false, path = "./ethers-contract" }
ethers-core = { version = "^0.13.0", default-features = false, path = "./ethers-core" }
ethers-providers = { version = "^0.13.0", default-features = false, path = "./ethers-providers" }
ethers-signers = { version = "^0.6.0", default-features = false, path = "./ethers-signers" }
@ -92,7 +92,7 @@ ethers-solc = { version = "^0.3.0", default-features = false, path = "./ethers-s
ethers-etherscan = { version = "^0.2.0", default-features = false, path = "./ethers-etherscan" }
[dev-dependencies]
ethers-contract = { version = "^0.6.0", default-features = false, path = "./ethers-contract", features = ["abigen", "eip712"] }
ethers-contract = { version = "^0.13.0", default-features = false, path = "./ethers-contract", features = ["abigen", "eip712"] }
ethers-providers = { version = "^0.13.0", default-features = false, path = "./ethers-providers", features = ["ws"] }
[target.'cfg(target_family = "unix")'.dev-dependencies]

View File

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

View File

@ -16,6 +16,6 @@ hex = "0.4.3"
serde_json = "1.0.68"
[dev-dependencies]
ethers-contract = { version = "^0.6.0", path = "../../ethers-contract", features = ["abigen"]}
ethers-contract = { version = "^0.13.0", path = "../../ethers-contract", features = ["abigen"]}
ethers-contract-derive = { version = "^0.13.0", path = "../../ethers-contract/ethers-contract-derive" }
ethers-signers = { version = "^0.6.0", path = "../../ethers-signers" }

View File

@ -14,7 +14,7 @@ all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
ethers-contract = { version = "^0.6.0", path = "../ethers-contract", default-features = false, features = ["abigen"] }
ethers-contract = { version = "^0.13.0", path = "../ethers-contract", default-features = false, features = ["abigen"] }
ethers-core = { version = "^0.13.0", path = "../ethers-core", default-features = false }
ethers-etherscan = { version = "^0.2.0", path = "../ethers-etherscan", default-features = false }
ethers-providers = { version = "^0.13.0", path = "../ethers-providers", default-features = false }

View File

@ -41,7 +41,7 @@ eth-keystore = { version = "0.4.1" }
home = { version = "0.5.3", optional = true }
[dev-dependencies]
ethers-contract = { version = "^0.6.0", path = "../ethers-contract", features = ["eip712", "abigen"]}
ethers-contract = { version = "^0.13.0", path = "../ethers-contract", features = ["eip712", "abigen"]}
ethers-derive-eip712 = { version = "^0.13.0", path = "../ethers-core/ethers-derive-eip712" }
serde_json = { version = "1.0.64" }
tracing-subscriber = "0.3.11"