(cargo-release) version 1.0.0

This commit is contained in:
Georgios Konstantopoulos 2022-10-25 11:03:00 -07:00
parent aac5fab028
commit e34c487a85
4 changed files with 5 additions and 5 deletions

2
Cargo.lock generated
View File

@ -1238,7 +1238,7 @@ dependencies = [
[[package]]
name = "ethers-contract"
version = "0.17.0"
version = "1.0.0"
dependencies = [
"ethers-contract-abigen",
"ethers-contract-derive",

View File

@ -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",
] }

View File

@ -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 <me@gakonst.com>"]

View File

@ -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 }