-
Notifications
You must be signed in to change notification settings - Fork 190
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This PR just bumps the versions in Cargo.toml to v16.0.0 in preparation for a new release including Solidity error types.
- Loading branch information
Nicholas Rodrigues Lordello
authored
Dec 15, 2021
1 parent
afae7c7
commit 7f4bb3d
Showing
4 changed files
with
6 additions
and
6 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 = "ethabi-cli" | ||
version = "15.0.0" | ||
version = "16.0.0" | ||
authors = [ | ||
"Parity Technologies <[email protected]>", | ||
"Artem Vorotnikov <[email protected]>", | ||
|
@@ -14,7 +14,7 @@ edition = "2018" | |
|
||
[dependencies] | ||
anyhow = "1" | ||
ethabi = { version = "15.0.0", path = "../ethabi" } | ||
ethabi = { version = "16.0.0", path = "../ethabi" } | ||
hex = "0.4" | ||
sha3 = "0.9" | ||
structopt = "0.3" | ||
|
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 = "ethabi-contract" | ||
version = "11.0.0" | ||
version = "16.0.0" | ||
authors = [ | ||
"Parity Technologies <[email protected]>", | ||
"Artem Vorotnikov <[email protected]>", | ||
|
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 = "ethabi-derive" | ||
version = "15.0.0" | ||
version = "16.0.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
homepage = "https://github.com/paritytech/ethabi" | ||
license = "Apache-2.0" | ||
|
@@ -12,7 +12,7 @@ edition = "2018" | |
proc-macro = true | ||
|
||
[dependencies] | ||
ethabi = { path = "../ethabi", version = "15.0.0" } | ||
ethabi = { path = "../ethabi", version = "16.0.0" } | ||
heck = "0.3.1" | ||
syn = { version = "1.0.13", default-features = false, features = ["derive", "parsing", "printing", "proc-macro"] } | ||
quote = "1.0.2" | ||
|
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 = "ethabi" | ||
version = "15.0.0" | ||
version = "16.0.0" | ||
authors = [ | ||
"Parity Technologies <[email protected]>", | ||
"Artem Vorotnikov <[email protected]>", | ||
|