Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ethereum-types to 0.9 #183

Merged
merged 3 commits into from Apr 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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