(cargo-release) version 0.13.0

This commit is contained in:
Georgios Konstantopoulos 2022-06-14 13:59:11 +03:00
parent 3017e09146
commit ce275f1838
4 changed files with 5 additions and 5 deletions

2
Cargo.lock generated
View File

@ -1226,7 +1226,7 @@ dependencies = [
[[package]]
name = "ethers-contract-derive"
version = "0.6.3"
version = "0.13.0"
dependencies = [
"ethers-contract-abigen",
"ethers-core",

View File

@ -13,7 +13,7 @@ keywords = ["ethereum", "web3", "celo", "ethers"]
ethers-providers = { version = "^0.6.0", path = "../ethers-providers", default-features = false }
ethers-core = { version = "^0.13.0", path = "../ethers-core", default-features = false }
ethers-contract-abigen = { version = "^0.13.0", path = "ethers-contract-abigen", default-features = false, optional = true }
ethers-contract-derive = { version = "^0.6.0", path = "ethers-contract-derive", optional = true }
ethers-contract-derive = { version = "^0.13.0", path = "ethers-contract-derive", optional = true }
ethers-derive-eip712 = { version = "^0.2.0", path = "../ethers-core/ethers-derive-eip712", optional = true }
serde = { version = "1.0.124", default-features = false }
@ -29,7 +29,7 @@ ethers-middleware = { version = "^0.6.0", path = "../ethers-middleware" }
ethers-providers = { version = "^0.6.0", path = "../ethers-providers", default-features = false, features = ["ws"] }
ethers-signers = { version = "^0.6.0", path = "../ethers-signers" }
ethers-contract-abigen = { version = "^0.13.0", path = "ethers-contract-abigen" }
ethers-contract-derive = { version = "^0.6.0", path = "ethers-contract-derive" }
ethers-contract-derive = { version = "^0.13.0", path = "ethers-contract-derive" }
ethers-core = { version = "^0.13.0", path = "../ethers-core", default-features = false, features = ["eip712"]}
ethers-derive-eip712 = { version = "^0.2.0", path = "../ethers-core/ethers-derive-eip712"}
ethers-solc = { version = "^0.3.0", path = "../ethers-solc", default-features = false }

View File

@ -1,6 +1,6 @@
[package]
name = "ethers-contract-derive"
version = "0.6.3"
version = "0.13.0"
authors = ["Nicholas Rodrigues Lordello <nlordell@gmail.com>", "Georgios Konstantopoulos <me@gakonst.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

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