From ef9a62ba843bf02e152c7f7b5d164f210f11d0d6 Mon Sep 17 00:00:00 2001 From: Alexey Shekhirin Date: Mon, 15 Aug 2022 00:18:30 -0700 Subject: [PATCH] chore: release 17.2.0 (#277) --- CHANGELOG.md | 3 ++- cli/Cargo.toml | 4 ++-- contract/Cargo.toml | 2 +- derive/Cargo.toml | 4 ++-- ethabi/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 857b8596a..92df79202 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,10 @@ The format is based on [Keep a Changelog]. [Keep a Changelog]: http://keepachangelog.com/en/1.0.0/ -## Unreleased +## [17.2.0] - 2022-08-12 ### Added - Add `Token::into_tuple` +- Parse nested tuples/arrays ## [17.1.0] - 2022-06-15 ### Added diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 9712ed1b4..ba926c535 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethabi-cli" -version = "17.1.0" +version = "17.2.0" authors = [ "Parity Technologies ", "Artem Vorotnikov ", @@ -14,7 +14,7 @@ edition = "2018" [dependencies] anyhow = "1" -ethabi = { version = "17.1.0", path = "../ethabi" } +ethabi = { version = "17.2.0", path = "../ethabi" } hex = "0.4" sha3 = "0.10" structopt = "0.3" diff --git a/contract/Cargo.toml b/contract/Cargo.toml index 248d386a6..80b3c963c 100644 --- a/contract/Cargo.toml +++ b/contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethabi-contract" -version = "17.1.0" +version = "17.2.0" authors = [ "Parity Technologies ", "Artem Vorotnikov ", diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 9a28b8e6f..ebcfdca5b 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethabi-derive" -version = "17.1.0" +version = "17.2.0" authors = ["Parity Technologies "] homepage = "https://github.com/paritytech/ethabi" license = "Apache-2.0" @@ -12,7 +12,7 @@ edition = "2018" proc-macro = true [dependencies] -ethabi = { path = "../ethabi", version = "17.1.0" } +ethabi = { path = "../ethabi", version = "17.2.0" } heck = "0.4" syn = { version = "1.0.13", default-features = false, features = ["derive", "parsing", "printing", "proc-macro"] } quote = "1.0.2" diff --git a/ethabi/Cargo.toml b/ethabi/Cargo.toml index 30c91aa7c..10d7a96df 100644 --- a/ethabi/Cargo.toml +++ b/ethabi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethabi" -version = "17.1.0" +version = "17.2.0" authors = [ "Parity Technologies ", "Artem Vorotnikov ",