Skip to content

Commit faf512d

Browse files
committed
Release v17.1.0
1 parent e7af110 commit faf512d

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ The format is based on [Keep a Changelog].
44

55
[Keep a Changelog]: http://keepachangelog.com/en/1.0.0/
66

7+
## [17.1.0] - 2022-06-15
8+
### Added
9+
- Add Serialize trait to Token, Log, LogParams.
10+
11+
### Changed
12+
- Optimize encoder to minimize allocations and copying for ~85% speedup.
13+
714
## [17.0.0] - 2022-03-01
815
### Added
916
- `parity-codec` cargo feature.

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 = "17.0.0"
3+
version = "17.1.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 = "17.0.0", path = "../ethabi" }
17+
ethabi = { version = "17.1.0", path = "../ethabi" }
1818
hex = "0.4"
1919
sha3 = "0.10"
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 = "17.0.0"
3+
version = "17.1.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 = "17.0.0"
3+
version = "17.1.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 = "17.0.0" }
15+
ethabi = { path = "../ethabi", version = "17.1.0" }
1616
heck = "0.4"
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 = "17.0.0"
3+
version = "17.1.0"
44
authors = [
55
"Parity Technologies <[email protected]>",
66
"Artem Vorotnikov <[email protected]>",

0 commit comments

Comments
 (0)