-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version bump to get #472 released so we can use it in gp v1/v2.
- Loading branch information
Showing
4 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ethcontract-common" | ||
version = "0.11.1" | ||
version = "0.11.2" | ||
authors = ["Nicholas Rodrigues Lordello <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ethcontract-derive" | ||
version = "0.11.1" | ||
version = "0.11.2" | ||
authors = ["Nicholas Rodrigues Lordello <[email protected]>"] | ||
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.11.1", path = "../ethcontract-common" } | ||
ethcontract-generate = { version = "0.11.1", path = "../ethcontract-generate" } | ||
ethcontract-common = { version = "0.11.2", path = "../ethcontract-common" } | ||
ethcontract-generate = { version = "0.11.2", path = "../ethcontract-generate" } | ||
proc-macro2 = "1.0" | ||
quote = "1.0" | ||
syn = "1.0.12" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ethcontract-generate" | ||
version = "0.11.1" | ||
version = "0.11.2" | ||
authors = ["Nicholas Rodrigues Lordello <[email protected]>"] | ||
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.11.1", path = "../ethcontract-common" } | ||
ethcontract-common = { version = "0.11.2", path = "../ethcontract-common" } | ||
Inflector = "0.11" | ||
proc-macro2 = "1.0" | ||
quote = "1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ethcontract" | ||
version = "0.11.1" | ||
version = "0.11.2" | ||
authors = ["Nicholas Rodrigues Lordello <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -25,8 +25,8 @@ ws-tokio = ["web3/ws-tokio"] | |
ws-tls-tokio = ["web3/ws-tls-tokio"] | ||
|
||
[dependencies] | ||
ethcontract-common = { version = "0.11.1", path = "../ethcontract-common" } | ||
ethcontract-derive = { version = "0.11.1", path = "../ethcontract-derive", optional = true} | ||
ethcontract-common = { version = "0.11.2", path = "../ethcontract-common" } | ||
ethcontract-derive = { version = "0.11.2", path = "../ethcontract-derive", optional = true} | ||
futures = "0.3" | ||
futures-timer = "3.0" | ||
hex = "0.4" | ||
|