(cargo-release) version 1.0.0

This commit is contained in:
Georgios Konstantopoulos 2022-10-25 11:02:59 -07:00
parent 266a40e2bc
commit 16a207b0bd
4 changed files with 5 additions and 5 deletions

2
Cargo.lock generated
View File

@ -1259,7 +1259,7 @@ dependencies = [
[[package]]
name = "ethers-contract-abigen"
version = "0.17.0"
version = "1.0.0"
dependencies = [
"Inflector",
"cfg-if 1.0.0",

View File

@ -13,7 +13,7 @@ keywords = ["ethereum", "web3", "celo", "ethers"]
[dependencies]
ethers-providers = { version = "^0.17.0", path = "../ethers-providers", default-features = false }
ethers-core = { version = "^1.0.0", path = "../ethers-core", default-features = false }
ethers-contract-abigen = { version = "^0.17.0", path = "ethers-contract-abigen", default-features = false, optional = true }
ethers-contract-abigen = { version = "^1.0.0", path = "ethers-contract-abigen", default-features = false, optional = true }
ethers-contract-derive = { version = "^0.17.0", path = "ethers-contract-derive", optional = true }
ethers-derive-eip712 = { version = "^0.17.0", path = "../ethers-core/ethers-derive-eip712", optional = true }
@ -30,7 +30,7 @@ ethers-providers = { version = "^0.17.0", path = "../ethers-providers", default-
"ws",
] }
ethers-signers = { version = "^0.17.0", path = "../ethers-signers" }
ethers-contract-abigen = { version = "^0.17.0", path = "ethers-contract-abigen" }
ethers-contract-abigen = { version = "^1.0.0", path = "ethers-contract-abigen" }
ethers-contract-derive = { version = "^0.17.0", path = "ethers-contract-derive" }
ethers-core = { version = "^1.0.0", path = "../ethers-core", default-features = false, features = [
"eip712",

View File

@ -1,6 +1,6 @@
[package]
name = "ethers-contract-abigen"
version = "0.17.0"
version = "1.0.0"
authors = [
"Nicholas Rodrigues Lordello <nlordell@gmail.com>",
"Georgios Konstantopoulos <me@gakonst.com>",

View File

@ -17,7 +17,7 @@ proc-macro = true
[dependencies]
ethers-core = { version = "^1.0.0", path = "../../ethers-core" }
ethers-contract-abigen = { version = "^0.17.0", path = "../ethers-contract-abigen" }
ethers-contract-abigen = { version = "^1.0.0", path = "../ethers-contract-abigen" }
serde_json = "1.0.53"
hex = { version = "0.4.3", default-features = false, features = ["std"] }