Skip to content

Commit 959f0f3

Browse files
committed
Release v15.0.0
1 parent 1da9de9 commit 959f0f3

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

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

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

7+
## [15.0.0] - 2021-09-23
8+
### Added
9+
- Optional field internalType to Param.
10+
- Support for no std.
11+
- Method to retrieve the short 4 byte signature of a function.
12+
13+
### Changed
14+
- Bump ethereum-types to 0.12.0.
15+
716
## [14.1.0] - 2021-07-08
817
### Added
918
- `Serialize` support for contracts.

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 = "14.1.0"
3+
version = "15.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 = "14.1.0", path = "../ethabi" }
17+
ethabi = { version = "15.0.0", path = "../ethabi" }
1818
hex = "0.4"
1919
sha3 = "0.9"
2020
structopt = "0.3"

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 = "14.1.0"
3+
version = "15.0.0"
44
authors = ["Parity Technologies <[email protected]>"]
55
homepage = "https://github.com/paritytech/ethabi"
66
license = "Apache-2.0"
@@ -13,7 +13,7 @@ proc-macro = true
1313

1414
[dependencies]
1515
anyhow = "1"
16-
ethabi = { path = "../ethabi", version = "14.1.0" }
16+
ethabi = { path = "../ethabi", version = "15.0.0" }
1717
heck = "0.3.1"
1818
syn = { version = "1.0.13", default-features = false, features = ["derive", "parsing", "printing", "proc-macro"] }
1919
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 = "14.1.0"
3+
version = "15.0.0"
44
authors = [
55
"Parity Technologies <[email protected]>",
66
"Artem Vorotnikov <[email protected]>",

0 commit comments

Comments
 (0)