From 0176d160b747d78060157de5fdbecb8373db3119 Mon Sep 17 00:00:00 2001 From: Nicholas Rodrigues Lordello Date: Thu, 30 Apr 2020 12:39:37 +0200 Subject: [PATCH] [Easy] Bump to v0.7.2 (#295) This includes #293 to silence some slack alerts. --- Cargo.toml | 6 +++--- common/Cargo.toml | 2 +- derive/Cargo.toml | 6 +++--- examples/generate/Cargo.toml | 2 +- examples/truffle/package.json | 2 +- generate/Cargo.toml | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index eba05303..d06323ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethcontract" -version = "0.7.1" +version = "0.7.2" authors = ["Nicholas Rodrigues Lordello "] edition = "2018" license = "MIT OR Apache-2.0" @@ -31,8 +31,8 @@ members = [ [dependencies] ethabi_9_0 = { package = "ethabi", version = "9.0" } -ethcontract-common = { version = "0.7.1", path = "./common" } -ethcontract-derive = { version = "0.7.1", path = "./derive", optional = true} +ethcontract-common = { version = "0.7.2", path = "./common" } +ethcontract-derive = { version = "0.7.2", path = "./derive", optional = true} futures = { version = "0.3", features = ["compat"] } futures-timer = "3.0" hex = "0.4" diff --git a/common/Cargo.toml b/common/Cargo.toml index 1940906e..b2723053 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethcontract-common" -version = "0.7.1" +version = "0.7.2" authors = ["Nicholas Rodrigues Lordello "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 7b10b331..432878e5 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethcontract-derive" -version = "0.7.1" +version = "0.7.2" authors = ["Nicholas Rodrigues Lordello "] edition = "2018" license = "MIT OR Apache-2.0" @@ -15,8 +15,8 @@ Proc macro for generating type-safe bindings to Ethereum smart contracts. proc-macro = true [dependencies] -ethcontract-common = { version = "0.7.1", path = "../common" } -ethcontract-generate = { version = "0.7.1", path = "../generate" } +ethcontract-common = { version = "0.7.2", path = "../common" } +ethcontract-generate = { version = "0.7.2", path = "../generate" } proc-macro2 = "1.0" quote = "1.0" syn = "1.0.12" diff --git a/examples/generate/Cargo.toml b/examples/generate/Cargo.toml index fbd7f00d..1ca92e44 100644 --- a/examples/generate/Cargo.toml +++ b/examples/generate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "examples-generate" -version = "0.7.1" +version = "0.7.2" publish = false authors = ["Nicholas Rodrigues Lordello "] edition = "2018" diff --git a/examples/truffle/package.json b/examples/truffle/package.json index 89ba36b9..dacfcad3 100644 --- a/examples/truffle/package.json +++ b/examples/truffle/package.json @@ -1,6 +1,6 @@ { "name": "ethcontract-contracts", - "version": "0.7.1", + "version": "0.7.2", "private": "true", "description": "Test contracts for ethcontract-rs runtime and proc macro.", "scripts": { diff --git a/generate/Cargo.toml b/generate/Cargo.toml index 1aef7036..24a02d7a 100644 --- a/generate/Cargo.toml +++ b/generate/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethcontract-generate" -version = "0.7.1" +version = "0.7.2" authors = ["Nicholas Rodrigues Lordello "] edition = "2018" license = "MIT OR Apache-2.0" @@ -14,7 +14,7 @@ Code generation for type-safe bindings to Ethereum smart contracts. [dependencies] anyhow = "1.0" curl = "0.4" -ethcontract-common = { version = "0.7.1", path = "../common" } +ethcontract-common = { version = "0.7.2", path = "../common" } Inflector = "0.11" proc-macro2 = "1.0" quote = "1.0"