Skip to content

Commit 7f4bb3d

Browse files
author
Nicholas Rodrigues Lordello
authored
Prepare for new 16.x release (#253)
This PR just bumps the versions in Cargo.toml to v16.0.0 in preparation for a new release including Solidity error types.
1 parent afae7c7 commit 7f4bb3d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ethabi-cli"
3-
version = "15.0.0"
3+
version = "16.0.0"
44
authors = [
55
"Parity Technologies <[email protected]>",
66
"Artem Vorotnikov <[email protected]>",
@@ -14,7 +14,7 @@ edition = "2018"
1414

1515
[dependencies]
1616
anyhow = "1"
17-
ethabi = { version = "15.0.0", path = "../ethabi" }
17+
ethabi = { version = "16.0.0", path = "../ethabi" }
1818
hex = "0.4"
1919
sha3 = "0.9"
2020
structopt = "0.3"

contract/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ethabi-contract"
3-
version = "11.0.0"
3+
version = "16.0.0"
44
authors = [
55
"Parity Technologies <[email protected]>",
66
"Artem Vorotnikov <[email protected]>",

derive/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ethabi-derive"
3-
version = "15.0.0"
3+
version = "16.0.0"
44
authors = ["Parity Technologies <[email protected]>"]
55
homepage = "https://github.com/paritytech/ethabi"
66
license = "Apache-2.0"
@@ -12,7 +12,7 @@ edition = "2018"
1212
proc-macro = true
1313

1414
[dependencies]
15-
ethabi = { path = "../ethabi", version = "15.0.0" }
15+
ethabi = { path = "../ethabi", version = "16.0.0" }
1616
heck = "0.3.1"
1717
syn = { version = "1.0.13", default-features = false, features = ["derive", "parsing", "printing", "proc-macro"] }
1818
quote = "1.0.2"

ethabi/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ethabi"
3-
version = "15.0.0"
3+
version = "16.0.0"
44
authors = [
55
"Parity Technologies <[email protected]>",
66
"Artem Vorotnikov <[email protected]>",

0 commit comments

Comments
 (0)