Skip to content

Commit

Permalink
Prepare for new 16.x release (#253)
Browse files Browse the repository at this point in the history
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
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions cli/Cargo.toml
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 <admin@parity.io>",
"Artem Vorotnikov <artem@vorotnikov.me>",
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion contract/Cargo.toml
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 <admin@parity.io>",
"Artem Vorotnikov <artem@vorotnikov.me>",
Expand Down
4 changes: 2 additions & 2 deletions derive/Cargo.toml
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 <admin@parity.io>"]
homepage = "https://github.com/paritytech/ethabi"
license = "Apache-2.0"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion ethabi/Cargo.toml
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 <admin@parity.io>",
"Artem Vorotnikov <artem@vorotnikov.me>",
Expand Down

0 comments on commit 7f4bb3d

Please sign in to comment.