Skip to content

Commit

Permalink
Merge pull request #183 from WyseNynja/patch-1
Browse files Browse the repository at this point in the history
Update ethereum-types to 0.9
  • Loading branch information
dvdplm committed Apr 9, 2020
2 parents a985fb9 + 45d3397 commit eab4c99
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 52 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,10 @@ The format is based on [Keep a Changelog].

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

## [12.0.0]
### Dependencies
- Upgrade ethereum-types (PR #183)

## [11.0.0] - 2020-01-16
### Changed
- Support overloaded contract functions (PR #166)
Expand All @@ -19,3 +23,4 @@ The format is based on [Keep a Changelog].
- Replace docopt by structopt (clap) because of performance issue (#161)
### Fixed
- Return an exit code 1 on failure, including wrong input parameters

95 changes: 49 additions & 46 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ethabi-cli"
version = "11.0.0"
version = "12.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
keywords = ["ethereum", "eth", "abi", "solidity", "cli"]
description = "Easy to use cli for conversion of ethereum contract calls to bytecode."
Expand All @@ -10,7 +10,7 @@ edition = "2018"

[dependencies]
rustc-hex = "2.0"
ethabi = { version = "11.0.0", path = "../ethabi" }
ethabi = { version = "12.0.0", path = "../ethabi" }
tiny-keccak = "1.4"
structopt = "0.3"
itertools = "0.8"
Expand Down
4 changes: 2 additions & 2 deletions derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ethabi-derive"
version = "11.0.0"
version = "12.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
homepage = "https://github.com/paritytech/ethabi"
license = "MIT/Apache-2.0"
Expand All @@ -12,7 +12,7 @@ edition = "2018"
proc-macro = true

[dependencies]
ethabi = { path = "../ethabi", version = "11.0.0" }
ethabi = { path = "../ethabi", version = "12.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
4 changes: 2 additions & 2 deletions ethabi/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "ethabi"
version = "11.0.0"
version = "12.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
homepage = "https://github.com/paritytech/ethabi"
license = "MIT/Apache-2.0"
Expand All @@ -13,7 +13,7 @@ hex = { version = "2.0", package = "rustc-hex" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tiny-keccak = "1.4"
ethereum-types = "0.8.0"
ethereum-types = "0.9.0"
uint = "0.8.2"

[dev-dependencies]
Expand Down

0 comments on commit eab4c99

Please sign in to comment.