(cargo-release) version 1.0.0

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

2
Cargo.lock generated
View File

@ -1328,7 +1328,7 @@ dependencies = [
[[package]]
name = "ethers-derive-eip712"
version = "0.17.0"
version = "1.0.0"
dependencies = [
"ethers-contract-derive",
"ethers-core",

View File

@ -15,7 +15,7 @@ ethers-providers = { version = "^0.17.0", path = "../ethers-providers", default-
ethers-core = { version = "^1.0.0", path = "../ethers-core", default-features = false }
ethers-contract-abigen = { version = "^1.0.0", path = "ethers-contract-abigen", default-features = false, optional = true }
ethers-contract-derive = { version = "^1.0.0", path = "ethers-contract-derive", optional = true }
ethers-derive-eip712 = { version = "^0.17.0", path = "../ethers-core/ethers-derive-eip712", optional = true }
ethers-derive-eip712 = { version = "^1.0.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 }
@ -35,7 +35,7 @@ ethers-contract-derive = { version = "^1.0.0", path = "ethers-contract-derive" }
ethers-core = { version = "^1.0.0", path = "../ethers-core", default-features = false, features = [
"eip712",
] }
ethers-derive-eip712 = { version = "^0.17.0", path = "../ethers-core/ethers-derive-eip712" }
ethers-derive-eip712 = { version = "^1.0.0", path = "../ethers-core/ethers-derive-eip712" }
ethers-solc = { version = "^0.17.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.17.0"
version = "1.0.0"
edition = "2018"
description = "Custom derive macro for EIP-712 typed data"
license = "MIT OR Apache-2.0"

View File

@ -45,7 +45,7 @@ home = { version = "0.5.4", optional = true }
[dev-dependencies]
ethers-contract-derive = { version = "^1.0.0", path = "../ethers-contract/ethers-contract-derive" }
ethers-derive-eip712 = { version = "^0.17.0", path = "../ethers-core/ethers-derive-eip712" }
ethers-derive-eip712 = { version = "^1.0.0", path = "../ethers-core/ethers-derive-eip712" }
serde_json = { version = "1.0.64" }
tracing-subscriber = "0.3.16"
yubihsm = { version = "0.41.0", features = ["secp256k1", "usb", "mockhsm"] }