From 9df4d21d3b6408835047797a8fa172acc8d224d9 Mon Sep 17 00:00:00 2001 From: Georgios Konstantopoulos Date: Sun, 29 Aug 2021 02:53:10 +0300 Subject: [PATCH] (cargo-release) version 0.5.1 (#414) --- Cargo.lock | 16 ++++++++-------- Cargo.toml | 18 +++++++++--------- ethers-contract/Cargo.toml | 18 +++++++++--------- .../ethers-contract-abigen/Cargo.toml | 4 ++-- .../ethers-contract-derive/Cargo.toml | 6 +++--- ethers-core/Cargo.toml | 2 +- ethers-middleware/Cargo.toml | 12 ++++++------ ethers-providers/Cargo.toml | 4 ++-- ethers-signers/Cargo.toml | 4 ++-- 9 files changed, 42 insertions(+), 42 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 14644fab..d7d38c9d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -838,7 +838,7 @@ dependencies = [ [[package]] name = "ethers" -version = "0.4.1" +version = "0.5.1" dependencies = [ "anyhow", "ethers-contract", @@ -854,7 +854,7 @@ dependencies = [ [[package]] name = "ethers-contract" -version = "0.4.7" +version = "0.5.1" dependencies = [ "ethers-contract-abigen", "ethers-contract-derive", @@ -873,7 +873,7 @@ dependencies = [ [[package]] name = "ethers-contract-abigen" -version = "0.4.7" +version = "0.5.1" dependencies = [ "Inflector", "anyhow", @@ -894,7 +894,7 @@ dependencies = [ [[package]] name = "ethers-contract-derive" -version = "0.4.7" +version = "0.5.1" dependencies = [ "ethers-contract-abigen", "ethers-core", @@ -907,7 +907,7 @@ dependencies = [ [[package]] name = "ethers-core" -version = "0.4.8" +version = "0.5.1" dependencies = [ "arrayvec 0.7.1", "bincode", @@ -934,7 +934,7 @@ dependencies = [ [[package]] name = "ethers-middleware" -version = "0.4.8" +version = "0.5.1" dependencies = [ "async-trait", "ethers-contract", @@ -958,7 +958,7 @@ dependencies = [ [[package]] name = "ethers-providers" -version = "0.4.6" +version = "0.5.1" dependencies = [ "async-trait", "auto_impl", @@ -991,7 +991,7 @@ dependencies = [ [[package]] name = "ethers-signers" -version = "0.4.6" +version = "0.5.1" dependencies = [ "async-trait", "coins-bip32", diff --git a/Cargo.toml b/Cargo.toml index 102985e9..200eb605 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "ethers" -version = "0.4.1" +version = "0.5.1" authors = ["Georgios Konstantopoulos "] license = "MIT OR Apache-2.0" edition = "2018" -readme = "../README.md" +readme = "README.md" documentation = "https://docs.rs/ethers" repository = "https://github.com/gakonst/ethers-rs" homepage = "https://docs.rs/ethers" @@ -71,15 +71,15 @@ abigen = ["ethers-contract/abigen"] [dependencies] -ethers-contract = { version = "0.4.7", default-features = false, path = "./ethers-contract" } -ethers-core = { version = "0.4.8", default-features = false, path = "./ethers-core", features = ["setup"] } -ethers-providers = { version = "0.4.6", default-features = false, path = "./ethers-providers" } -ethers-signers = { version = "0.4.6", default-features = false, path = "./ethers-signers" } -ethers-middleware = { version = "0.4.8", default-features = false, path = "./ethers-middleware" } +ethers-contract = { version = "^0.5.0", default-features = false, path = "./ethers-contract" } +ethers-core = { version = "^0.5.0", default-features = false, path = "./ethers-core", features = ["setup"] } +ethers-providers = { version = "^0.5.0", default-features = false, path = "./ethers-providers" } +ethers-signers = { version = "^0.5.0", default-features = false, path = "./ethers-signers" } +ethers-middleware = { version = "^0.5.0", default-features = false, path = "./ethers-middleware" } [dev-dependencies] -ethers-contract = { version = "0.4.7", default-features = false, path = "./ethers-contract", features = ["abigen"] } -ethers-providers = { version = "0.4.6", default-features = false, path = "./ethers-providers", features = ["ws", "ipc"] } +ethers-contract = { version = "^0.5.0", default-features = false, path = "./ethers-contract", features = ["abigen"] } +ethers-providers = { version = "^0.5.0", default-features = false, path = "./ethers-providers", features = ["ws", "ipc"] } anyhow = "1.0.39" rand = "0.8.4" diff --git a/ethers-contract/Cargo.toml b/ethers-contract/Cargo.toml index 2c38cb64..d29835c8 100644 --- a/ethers-contract/Cargo.toml +++ b/ethers-contract/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ethers-contract" license = "MIT OR Apache-2.0" -version = "0.4.7" +version = "0.5.1" authors = ["Georgios Konstantopoulos "] edition = "2018" description = "Smart contract bindings for the ethers-rs crate" @@ -10,10 +10,10 @@ repository = "https://github.com/gakonst/ethers-rs" keywords = ["ethereum", "web3", "celo", "ethers"] [dependencies] -ethers-providers = { version = "0.4.6", path = "../ethers-providers", default-features = false } -ethers-core = { version = "0.4.6", path = "../ethers-core", default-features = false } -ethers-contract-abigen = { version = "0.4.7", path = "ethers-contract-abigen", optional = true } -ethers-contract-derive = { version = "0.4.7", path = "ethers-contract-derive", optional = true } +ethers-providers = { version = "^0.5.0", path = "../ethers-providers", default-features = false } +ethers-core = { version = "^0.5.0", path = "../ethers-core", default-features = false } +ethers-contract-abigen = { version = "^0.5.0", path = "ethers-contract-abigen", optional = true } +ethers-contract-derive = { version = "^0.5.0", path = "ethers-contract-derive", optional = true } serde = { version = "1.0.124", default-features = false } serde_json = { version = "1.0.64", default-features = false } @@ -24,10 +24,10 @@ futures-util = { version = "0.3.16" } hex = { version = "0.4.3", default-features = false, features = ["std"] } [dev-dependencies] -ethers-providers = { version = "0.4.6", path = "../ethers-providers", default-features = false, features = ["ws"] } -ethers-signers = { version = "0.4.6", path = "../ethers-signers" } -ethers-contract-abigen = { version = "0.4.7", path = "ethers-contract-abigen" } -ethers-contract-derive = { version = "0.4.7", path = "ethers-contract-derive" } +ethers-providers = { version = "^0.5.0", path = "../ethers-providers", default-features = false, features = ["ws"] } +ethers-signers = { version = "^0.5.0", path = "../ethers-signers" } +ethers-contract-abigen = { version = "^0.5.0", path = "ethers-contract-abigen" } +ethers-contract-derive = { version = "^0.5.0", path = "ethers-contract-derive" } [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] tokio = { version = "1.5", default-features = false, features = ["macros"] } diff --git a/ethers-contract/ethers-contract-abigen/Cargo.toml b/ethers-contract/ethers-contract-abigen/Cargo.toml index 60d89824..b0cb4e30 100644 --- a/ethers-contract/ethers-contract-abigen/Cargo.toml +++ b/ethers-contract/ethers-contract-abigen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethers-contract-abigen" -version = "0.4.7" +version = "0.5.1" authors = ["Nicholas Rodrigues Lordello ", "Georgios Konstantopoulos "] edition = "2018" license = "MIT OR Apache-2.0" @@ -10,7 +10,7 @@ repository = "https://github.com/gakonst/ethers-rs" keywords = ["ethereum", "web3", "celo", "ethers"] [dependencies] -ethers-core = { version = "0.4.6", path = "../../ethers-core" } +ethers-core = { version = "^0.5.0", path = "../../ethers-core" } anyhow = "1.0.37" Inflector = "0.11" diff --git a/ethers-contract/ethers-contract-derive/Cargo.toml b/ethers-contract/ethers-contract-derive/Cargo.toml index ef5162a4..1c7c19ec 100644 --- a/ethers-contract/ethers-contract-derive/Cargo.toml +++ b/ethers-contract/ethers-contract-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethers-contract-derive" -version = "0.4.7" +version = "0.5.1" authors = ["Nicholas Rodrigues Lordello ", "Georgios Konstantopoulos "] edition = "2018" license = "MIT OR Apache-2.0" @@ -13,8 +13,8 @@ keywords = ["ethereum", "web3", "celo", "ethers"] proc-macro = true [dependencies] -ethers-core = { version = "0.4.6", path = "../../ethers-core" } -ethers-contract-abigen = { version = "0.4.7", path = "../ethers-contract-abigen" } +ethers-core = { version = "^0.5.0", path = "../../ethers-core" } +ethers-contract-abigen = { version = "^0.5.0", path = "../ethers-contract-abigen" } serde_json = "1.0.53" hex = { version = "0.4.3", default-features = false, features = ["std"] } diff --git a/ethers-core/Cargo.toml b/ethers-core/Cargo.toml index 19011f18..91c3c04f 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.4.8" +version = "0.5.1" authors = ["Georgios Konstantopoulos "] edition = "2018" description = "Core structures for the ethers-rs crate" diff --git a/ethers-middleware/Cargo.toml b/ethers-middleware/Cargo.toml index 7c0cf7ea..f4cc4852 100644 --- a/ethers-middleware/Cargo.toml +++ b/ethers-middleware/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ethers-middleware" license = "MIT OR Apache-2.0" -version = "0.4.8" +version = "0.5.1" authors = ["Georgios Konstantopoulos "] edition = "2018" description = "Middleware implementations for the ethers-rs crate" @@ -14,10 +14,10 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -ethers-contract = { version = "0.4.7", path = "../ethers-contract", default-features = false, features = ["abigen"] } -ethers-core = { version = "0.4.6", path = "../ethers-core", default-features = false } -ethers-providers = { version = "0.4.6", path = "../ethers-providers", default-features = false } -ethers-signers = { version = "0.4.6", path = "../ethers-signers", default-features = false } +ethers-contract = { version = "^0.5.0", path = "../ethers-contract", default-features = false, features = ["abigen"] } +ethers-core = { version = "^0.5.0", path = "../ethers-core", default-features = false } +ethers-providers = { version = "^0.5.0", path = "../ethers-providers", default-features = false } +ethers-signers = { version = "^0.5.0", path = "../ethers-signers", default-features = false } async-trait = { version = "0.1.50", default-features = false } serde = { version = "1.0.124", default-features = false, features = ["derive"] } @@ -40,7 +40,7 @@ tokio = { version = "1.5" } [dev-dependencies] hex = { version = "0.4.3", default-features = false, features = ["std"] } rand = { version = "0.8.4", default-features = false } -ethers-providers = { version = "0.4.6", path = "../ethers-providers", default-features = false, features = ["ws", "rustls"] } +ethers-providers = { version = "^0.5.0", path = "../ethers-providers", default-features = false, features = ["ws", "rustls"] } [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] tokio = { version = "1.5", default-features = false, features = ["rt", "macros", "time"] } diff --git a/ethers-providers/Cargo.toml b/ethers-providers/Cargo.toml index de60328f..ac38e906 100644 --- a/ethers-providers/Cargo.toml +++ b/ethers-providers/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ethers-providers" license = "MIT OR Apache-2.0" -version = "0.4.6" +version = "0.5.1" authors = ["Georgios Konstantopoulos "] edition = "2018" description = "Provider implementations for the ethers-rs crate" @@ -14,7 +14,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -ethers-core = { version = "0.4.6", path = "../ethers-core", default-features = false } +ethers-core = { version = "^0.5.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 2cc37d0a..cf0aeeb3 100644 --- a/ethers-signers/Cargo.toml +++ b/ethers-signers/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ethers-signers" license = "MIT OR Apache-2.0" -version = "0.4.6" +version = "0.5.1" authors = ["Georgios Konstantopoulos "] edition = "2018" description = "Signer implementations for the ethers-rs crate" @@ -14,7 +14,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -ethers-core = { version = "0.4.0", path = "../ethers-core" } +ethers-core = { version = "^0.5.0", path = "../ethers-core" } thiserror = { version = "1.0.24", default-features = false } coins-bip32 = "0.3.0" coins-bip39 = "0.3.0"