(cargo-release) version 0.13.0

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

2
Cargo.lock generated
View File

@ -1270,7 +1270,7 @@ dependencies = [
[[package]]
name = "ethers-derive-eip712"
version = "0.2.2"
version = "0.13.0"
dependencies = [
"ethers-contract",
"ethers-contract-derive",

View File

@ -14,7 +14,7 @@ ethers-providers = { version = "^0.6.0", path = "../ethers-providers", default-f
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.13.0", path = "ethers-contract-derive", optional = true }
ethers-derive-eip712 = { version = "^0.2.0", path = "../ethers-core/ethers-derive-eip712", optional = true }
ethers-derive-eip712 = { version = "^0.13.0", path = "../ethers-core/ethers-derive-eip712", optional = true }
serde = { version = "1.0.124", default-features = false }
serde_json = { version = "1.0.64", default-features = false }
@ -31,7 +31,7 @@ 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.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-derive-eip712 = { version = "^0.13.0", path = "../ethers-core/ethers-derive-eip712"}
ethers-solc = { version = "^0.3.0", path = "../ethers-solc", default-features = false }
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]

View File

@ -1,6 +1,6 @@
[package]
name = "ethers-derive-eip712"
version = "0.2.2"
version = "0.13.0"
edition = "2018"
description = "Custom derive macro for EIP-712 typed data"
license = "MIT OR Apache-2.0"

View File

@ -42,7 +42,7 @@ home = { version = "0.5.3", optional = true }
[dev-dependencies]
ethers-contract = { version = "^0.6.0", path = "../ethers-contract", features = ["eip712", "abigen"]}
ethers-derive-eip712 = { version = "^0.2.0", path = "../ethers-core/ethers-derive-eip712" }
ethers-derive-eip712 = { version = "^0.13.0", path = "../ethers-core/ethers-derive-eip712" }
serde_json = { version = "1.0.64" }
tracing-subscriber = "0.3.11"
yubihsm = { version = "0.40.0", features = ["secp256k1", "usb", "mockhsm"] }