Skip to content

Commit

Permalink
Merge pull request #176 from paritytech/dp/chore/prep-release
Browse files Browse the repository at this point in the history
Release v11
  • Loading branch information
dvdplm committed Jan 16, 2020
2 parents 321cc41 + abfbd6d commit a985fb9
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 19 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@ The format is based on [Keep a Changelog].

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

## [Unreleased]
## [11.0.0] - 2020-01-16
### Changed
- Add support for overloaded contract functions (PR #166)
- Removed `error_chain` and reworked errors manually. Also removes the `backtrace` feature. (#167)
- Support overloaded contract functions (PR #166)
- Removed `error_chain` and the `backtrace` feature. (#167)
- Update to 2018 edition (PR #171, #172)
- Fix handling of large ints (PR #173)
- Support Tuple parameter types (structs in Solidity) (PR #174)
### Dependencies
- Upgrade syn, proc-macro2, quote and heck crates (PR #169)

Expand Down
18 changes: 9 additions & 9 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethabi-cli"
version = "10.0.0"
version = "11.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 = "10.0.0", path = "../ethabi" }
ethabi = { version = "11.0.0", path = "../ethabi" }
tiny-keccak = "1.4"
structopt = "0.3"
itertools = "0.8"
Expand Down
2 changes: 1 addition & 1 deletion contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethabi-contract"
version = "10.0.0"
version = "11.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
homepage = "https://github.com/paritytech/ethabi"
license = "MIT/Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ethabi-derive"
version = "10.0.0"
version = "11.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 = "10.0.0" }
ethabi = { path = "../ethabi", version = "11.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
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "ethabi"
version = "10.0.0"
version = "11.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
homepage = "https://github.com/paritytech/ethabi"
license = "MIT/Apache-2.0"
keywords = ["ethereum", "eth", "abi", "solidity", "cli"]
keywords = ["ethereum", "eth", "abi", "solidity"]
description = "Easy to use conversion of ethereum contract calls to bytecode."
edition = "2018"

Expand Down

0 comments on commit a985fb9

Please sign in to comment.