(cargo-release) version 1.0.0

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

2
Cargo.lock generated
View File

@ -1426,7 +1426,7 @@ dependencies = [
[[package]]
name = "ethers-signers"
version = "0.17.0"
version = "1.0.0"
dependencies = [
"async-trait",
"coins-bip32",

View File

@ -93,7 +93,7 @@ ethers-addressbook = { version = "^1.0.0", default-features = false, path = "./e
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" }
ethers-signers = { version = "^1.0.0", default-features = false, path = "./ethers-signers" }
ethers-middleware = { version = "^0.17.0", default-features = false, path = "./ethers-middleware" }
ethers-solc = { version = "^1.0.0", default-features = false, path = "./ethers-solc", optional = true }
ethers-etherscan = { version = "^0.17.0", default-features = false, path = "./ethers-etherscan" }

View File

@ -29,7 +29,7 @@ hex = { version = "0.4.3", default-features = false, features = ["std"] }
ethers-providers = { version = "^1.0.0", path = "../ethers-providers", default-features = false, features = [
"ws",
] }
ethers-signers = { version = "^0.17.0", path = "../ethers-signers" }
ethers-signers = { version = "^1.0.0", path = "../ethers-signers" }
ethers-contract-abigen = { version = "^1.0.0", path = "ethers-contract-abigen" }
ethers-contract-derive = { version = "^1.0.0", path = "ethers-contract-derive" }
ethers-core = { version = "^1.0.0", path = "../ethers-core", default-features = false, features = [

View File

@ -19,7 +19,7 @@ ethers-contract = { version = "^1.0.0", path = "../ethers-contract", default-fea
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 }
ethers-signers = { version = "^0.17.0", path = "../ethers-signers", default-features = false }
ethers-signers = { version = "^1.0.0", path = "../ethers-signers", default-features = false }
async-trait = { version = "0.1.50", default-features = false }
auto_impl = { version = "0.5.0", default-features = false }

View File

@ -1,6 +1,6 @@
[package]
name = "ethers-signers"
version = "0.17.0"
version = "1.0.0"
edition = "2018"
rust-version = "1.62"
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]