From 4791bb6a0700b43af78db3b7151388d2eaf416c5 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Tue, 14 Jun 2022 13:59:10 +0300 Subject: [PATCH] (cargo-release) version 0.13.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- ethers-addressbook/Cargo.toml | 2 +- ethers-contract/Cargo.toml | 4 ++-- ethers-contract/ethers-contract-abigen/Cargo.toml | 2 +- ethers-contract/ethers-contract-derive/Cargo.toml | 2 +- ethers-core/Cargo.toml | 2 +- ethers-core/ethers-derive-eip712/Cargo.toml | 2 +- ethers-etherscan/Cargo.toml | 2 +- ethers-middleware/Cargo.toml | 2 +- ethers-providers/Cargo.toml | 2 +- ethers-signers/Cargo.toml | 2 +- ethers-solc/Cargo.toml | 2 +- 13 files changed, 14 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9bcb9181..2a9f8740 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1239,7 +1239,7 @@ dependencies = [ [[package]] name = "ethers-core" -version = "0.6.3" +version = "0.13.0" dependencies = [ "arrayvec 0.7.2", "bincode", diff --git a/Cargo.toml b/Cargo.toml index 2f26d587..1467b48d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -84,7 +84,7 @@ solc-sha2-asm = ["ethers-solc/asm"] [dependencies] ethers-addressbook = { version = "^0.1.0", default-features = false, path = "./ethers-addressbook" } ethers-contract = { version = "^0.6.0", default-features = false, path = "./ethers-contract" } -ethers-core = { version = "^0.6.0", default-features = false, path = "./ethers-core" } +ethers-core = { version = "^0.13.0", default-features = false, path = "./ethers-core" } ethers-providers = { version = "^0.6.0", default-features = false, path = "./ethers-providers" } ethers-signers = { version = "^0.6.0", default-features = false, path = "./ethers-signers" } ethers-middleware = { version = "^0.6.0", default-features = false, path = "./ethers-middleware" } diff --git a/ethers-addressbook/Cargo.toml b/ethers-addressbook/Cargo.toml index 37d9c2bc..8c51674c 100644 --- a/ethers-addressbook/Cargo.toml +++ b/ethers-addressbook/Cargo.toml @@ -14,4 +14,4 @@ once_cell = "1.12.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -ethers-core = { path = "../ethers-core", version = "^0.6.0" } +ethers-core = { path = "../ethers-core", version = "^0.13.0" } diff --git a/ethers-contract/Cargo.toml b/ethers-contract/Cargo.toml index 212311ee..0eb925de 100644 --- a/ethers-contract/Cargo.toml +++ b/ethers-contract/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["ethereum", "web3", "celo", "ethers"] [dependencies] ethers-providers = { version = "^0.6.0", path = "../ethers-providers", default-features = false } -ethers-core = { version = "^0.6.0", path = "../ethers-core", default-features = false } +ethers-core = { version = "^0.13.0", path = "../ethers-core", default-features = false } ethers-contract-abigen = { version = "^0.6.0", path = "ethers-contract-abigen", default-features = false, optional = true } ethers-contract-derive = { version = "^0.6.0", path = "ethers-contract-derive", optional = true } ethers-derive-eip712 = { version = "^0.2.0", path = "../ethers-core/ethers-derive-eip712", optional = true } @@ -30,7 +30,7 @@ ethers-providers = { version = "^0.6.0", path = "../ethers-providers", default-f ethers-signers = { version = "^0.6.0", path = "../ethers-signers" } ethers-contract-abigen = { version = "^0.6.0", path = "ethers-contract-abigen" } ethers-contract-derive = { version = "^0.6.0", path = "ethers-contract-derive" } -ethers-core = { version = "^0.6.0", path = "../ethers-core", default-features = false, features = ["eip712"]} +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 } diff --git a/ethers-contract/ethers-contract-abigen/Cargo.toml b/ethers-contract/ethers-contract-abigen/Cargo.toml index 759a535a..595ca60a 100644 --- a/ethers-contract/ethers-contract-abigen/Cargo.toml +++ b/ethers-contract/ethers-contract-abigen/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/gakonst/ethers-rs" keywords = ["ethereum", "web3", "celo", "ethers"] [dependencies] -ethers-core = { version = "^0.6.0", path = "../../ethers-core", features = ["macros"] } +ethers-core = { version = "^0.13.0", path = "../../ethers-core", features = ["macros"] } Inflector = "0.11" proc-macro2 = "1.0" diff --git a/ethers-contract/ethers-contract-derive/Cargo.toml b/ethers-contract/ethers-contract-derive/Cargo.toml index 251e98f5..35782a92 100644 --- a/ethers-contract/ethers-contract-derive/Cargo.toml +++ b/ethers-contract/ethers-contract-derive/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["ethereum", "web3", "celo", "ethers"] proc-macro = true [dependencies] -ethers-core = { version = "^0.6.0", path = "../../ethers-core" } +ethers-core = { version = "^0.13.0", path = "../../ethers-core" } ethers-contract-abigen = { version = "^0.6.0", path = "../ethers-contract-abigen" } serde_json = "1.0.53" diff --git a/ethers-core/Cargo.toml b/ethers-core/Cargo.toml index 021266b8..41ac1584 100644 --- a/ethers-core/Cargo.toml +++ b/ethers-core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ethers-core" license = "MIT OR Apache-2.0" -version = "0.6.3" +version = "0.13.0" authors = ["Georgios Konstantopoulos "] edition = "2018" description = "Core structures for the ethers-rs crate" diff --git a/ethers-core/ethers-derive-eip712/Cargo.toml b/ethers-core/ethers-derive-eip712/Cargo.toml index 3194fc6a..e8317174 100644 --- a/ethers-core/ethers-derive-eip712/Cargo.toml +++ b/ethers-core/ethers-derive-eip712/Cargo.toml @@ -11,7 +11,7 @@ proc-macro = true [dependencies] quote = "1.0.9" syn = "1.0.77" -ethers-core = { version = "^0.6.0", path = "../", default-features = false, features = ["eip712", "macros"] } +ethers-core = { version = "^0.13.0", path = "../", default-features = false, features = ["eip712", "macros"] } hex = "0.4.3" serde_json = "1.0.68" diff --git a/ethers-etherscan/Cargo.toml b/ethers-etherscan/Cargo.toml index b031c17f..8276650c 100644 --- a/ethers-etherscan/Cargo.toml +++ b/ethers-etherscan/Cargo.toml @@ -14,7 +14,7 @@ Rust API bindings for the etherscan.io web API keywords = ["ethereum", "web3", "etherscan", "ethers"] [dependencies] -ethers-core = { version = "^0.6.0", path = "../ethers-core", default-features = false } +ethers-core = { version = "^0.13.0", path = "../ethers-core", default-features = false } reqwest = { version = "0.11.11", default-features = false, features = ["json"] } serde = { version = "1.0.124", default-features = false, features = ["derive"] } serde_json = { version = "1.0.64", default-features = false } diff --git a/ethers-middleware/Cargo.toml b/ethers-middleware/Cargo.toml index 261370f4..53ea7cdb 100644 --- a/ethers-middleware/Cargo.toml +++ b/ethers-middleware/Cargo.toml @@ -15,7 +15,7 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] ethers-contract = { version = "^0.6.0", path = "../ethers-contract", default-features = false, features = ["abigen"] } -ethers-core = { version = "^0.6.0", path = "../ethers-core", default-features = false } +ethers-core = { version = "^0.13.0", path = "../ethers-core", default-features = false } ethers-etherscan = { version = "^0.2.0", path = "../ethers-etherscan", default-features = false } ethers-providers = { version = "^0.6.0", path = "../ethers-providers", default-features = false } ethers-signers = { version = "^0.6.0", path = "../ethers-signers", default-features = false } diff --git a/ethers-providers/Cargo.toml b/ethers-providers/Cargo.toml index 119d4046..1838022b 100644 --- a/ethers-providers/Cargo.toml +++ b/ethers-providers/Cargo.toml @@ -14,7 +14,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -ethers-core = { version = "^0.6.0", path = "../ethers-core", default-features = false } +ethers-core = { version = "^0.13.0", path = "../ethers-core", default-features = false } async-trait = { version = "0.1.50", default-features = false } hex = { version = "0.4.3", default-features = false, features = ["std"] } diff --git a/ethers-signers/Cargo.toml b/ethers-signers/Cargo.toml index 5aa9bd50..770b1736 100644 --- a/ethers-signers/Cargo.toml +++ b/ethers-signers/Cargo.toml @@ -14,7 +14,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -ethers-core = { version = "^0.6.0", path = "../ethers-core", features = ["eip712"]} +ethers-core = { version = "^0.13.0", path = "../ethers-core", features = ["eip712"]} thiserror = { version = "1.0.31", default-features = false } coins-bip32 = "0.6.0" coins-bip39 = "0.6.0" diff --git a/ethers-solc/Cargo.toml b/ethers-solc/Cargo.toml index e97d2028..d966e190 100644 --- a/ethers-solc/Cargo.toml +++ b/ethers-solc/Cargo.toml @@ -14,7 +14,7 @@ Utilites for working with solc keywords = ["ethereum", "web3", "solc", "solidity", "ethers"] [dependencies] -ethers-core = { version = "^0.6.0", path = "../ethers-core", default-features = false } +ethers-core = { version = "^0.13.0", path = "../ethers-core", default-features = false } serde_json = "1.0.68" serde = { version = "1.0.130", features = ["derive"] } semver = { version = "1.0.10", features = ["serde"] }