diff --git a/Cargo.lock b/Cargo.lock index d9416e9a..b32fa377 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1238,7 +1238,7 @@ dependencies = [ [[package]] name = "ethers-contract" -version = "0.17.0" +version = "1.0.0" dependencies = [ "ethers-contract-abigen", "ethers-contract-derive", diff --git a/Cargo.toml b/Cargo.toml index 2f58be85..884b923e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -90,7 +90,7 @@ solc-sha2-asm = ["ethers-solc", "ethers-solc/asm"] [dependencies] 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-providers = { version = "^1.0.0", default-features = false, path = "./ethers-providers" } 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" } [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", "eip712", ] } diff --git a/ethers-contract/Cargo.toml b/ethers-contract/Cargo.toml index 10f62240..7aa69cf4 100644 --- a/ethers-contract/Cargo.toml +++ b/ethers-contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethers-contract" -version = "0.17.0" +version = "1.0.0" edition = "2018" rust-version = "1.62" authors = ["Georgios Konstantopoulos "] diff --git a/ethers-middleware/Cargo.toml b/ethers-middleware/Cargo.toml index a6ca0c27..7e6aa342 100644 --- a/ethers-middleware/Cargo.toml +++ b/ethers-middleware/Cargo.toml @@ -15,7 +15,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [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-etherscan = { version = "^0.17.0", path = "../ethers-etherscan", default-features = false } ethers-providers = { version = "^1.0.0", path = "../ethers-providers", default-features = false }