(cargo-release) version 1.0.0
This commit is contained in:
parent
aac5fab028
commit
e34c487a85
|
@ -1238,7 +1238,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ethers-contract"
|
name = "ethers-contract"
|
||||||
version = "0.17.0"
|
version = "1.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ethers-contract-abigen",
|
"ethers-contract-abigen",
|
||||||
"ethers-contract-derive",
|
"ethers-contract-derive",
|
||||||
|
|
|
@ -90,7 +90,7 @@ solc-sha2-asm = ["ethers-solc", "ethers-solc/asm"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ethers-addressbook = { version = "^1.0.0", default-features = false, path = "./ethers-addressbook" }
|
ethers-addressbook = { version = "^1.0.0", default-features = false, path = "./ethers-addressbook" }
|
||||||
ethers-contract = { version = "^0.17.0", default-features = false, path = "./ethers-contract" }
|
ethers-contract = { version = "^1.0.0", default-features = false, path = "./ethers-contract" }
|
||||||
ethers-core = { version = "^1.0.0", default-features = false, path = "./ethers-core" }
|
ethers-core = { version = "^1.0.0", default-features = false, path = "./ethers-core" }
|
||||||
ethers-providers = { version = "^1.0.0", default-features = false, path = "./ethers-providers" }
|
ethers-providers = { version = "^1.0.0", default-features = false, path = "./ethers-providers" }
|
||||||
ethers-signers = { version = "^0.17.0", default-features = false, path = "./ethers-signers" }
|
ethers-signers = { version = "^0.17.0", default-features = false, path = "./ethers-signers" }
|
||||||
|
@ -99,7 +99,7 @@ ethers-solc = { version = "^0.17.0", default-features = false, path = "./ethers-
|
||||||
ethers-etherscan = { version = "^0.17.0", default-features = false, path = "./ethers-etherscan" }
|
ethers-etherscan = { version = "^0.17.0", default-features = false, path = "./ethers-etherscan" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ethers-contract = { version = "^0.17.0", default-features = false, path = "./ethers-contract", features = [
|
ethers-contract = { version = "^1.0.0", default-features = false, path = "./ethers-contract", features = [
|
||||||
"abigen",
|
"abigen",
|
||||||
"eip712",
|
"eip712",
|
||||||
] }
|
] }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-contract"
|
name = "ethers-contract"
|
||||||
version = "0.17.0"
|
version = "1.0.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
rust-version = "1.62"
|
rust-version = "1.62"
|
||||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||||
|
|
|
@ -15,7 +15,7 @@ all-features = true
|
||||||
rustdoc-args = ["--cfg", "docsrs"]
|
rustdoc-args = ["--cfg", "docsrs"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ethers-contract = { version = "^0.17.0", path = "../ethers-contract", default-features = false }
|
ethers-contract = { version = "^1.0.0", path = "../ethers-contract", default-features = false }
|
||||||
ethers-core = { version = "^1.0.0", path = "../ethers-core", default-features = false }
|
ethers-core = { version = "^1.0.0", path = "../ethers-core", default-features = false }
|
||||||
ethers-etherscan = { version = "^0.17.0", path = "../ethers-etherscan", default-features = false }
|
ethers-etherscan = { version = "^0.17.0", path = "../ethers-etherscan", default-features = false }
|
||||||
ethers-providers = { version = "^1.0.0", path = "../ethers-providers", default-features = false }
|
ethers-providers = { version = "^1.0.0", path = "../ethers-providers", default-features = false }
|
||||||
|
|
Loading…
Reference in New Issue